Add DesktopCapturer::Result::MAX_VALUE
MAX_VALUE will be used in chromoting_messages.h to define range of
valid DesktopCapturer::Result values.
BUG=webrtc:5950
R=jamiewalch@chromium.org
Review URL: https://codereview.webrtc.org/2069103003 .
Cr-Commit-Position: refs/heads/master@{#13157}
diff --git a/webrtc/modules/desktop_capture/desktop_capturer.h b/webrtc/modules/desktop_capture/desktop_capturer.h
index 80d9109..d6da81d 100644
--- a/webrtc/modules/desktop_capture/desktop_capturer.h
+++ b/webrtc/modules/desktop_capture/desktop_capturer.h
@@ -37,6 +37,8 @@
// Capture has failed and will keep failing if the caller tries calling
// Capture() again.
ERROR_PERMANENT,
+
+ MAX_VALUE = ERROR_PERMANENT
};
// Interface that must be implemented by the DesktopCapturer consumers.