summaryrefslogtreecommitdiffstats
path: root/extensions/common
diff options
context:
space:
mode:
authorgyzhou <gyzhou@chromium.org>2016-02-18 13:10:35 -0800
committerCommit bot <commit-bot@chromium.org>2016-02-18 21:12:10 +0000
commit7e69f2820196c6663e2af02924b68e51c4072039 (patch)
tree9623252fb1e2fc94e83f311d863cf9b4094a2bb0 /extensions/common
parent723b5eeb4486ac293b6574cfce33a4fb1012e09d (diff)
downloadchromium_src-7e69f2820196c6663e2af02924b68e51c4072039.zip
chromium_src-7e69f2820196c6663e2af02924b68e51c4072039.tar.gz
chromium_src-7e69f2820196c6663e2af02924b68e51c4072039.tar.bz2
Add a flag for tab desktop capture and enable tab capture for desktop media picker.
BUG=557222 Review URL: https://codereview.chromium.org/1688973003 Cr-Commit-Position: refs/heads/master@{#376257}
Diffstat (limited to 'extensions/common')
-rw-r--r--extensions/common/switches.cc3
-rw-r--r--extensions/common/switches.h1
2 files changed, 4 insertions, 0 deletions
diff --git a/extensions/common/switches.cc b/extensions/common/switches.cc
index 41e1d27..77e5ad1 100644
--- a/extensions/common/switches.cc
+++ b/extensions/common/switches.cc
@@ -54,6 +54,9 @@ const char kEnableMojoSerialService[] = "enable-mojo-serial-service";
// Enables extensions to hide bookmarks UI elements.
const char kEnableOverrideBookmarksUI[] = "enable-override-bookmarks-ui";
+// Enables tab for desktop sharing.
+const char kEnableTabForDesktopShare[] = "enable-tab-for-desktop-share";
+
// Allows the ErrorConsole to collect runtime and manifest errors, and display
// them in the chrome:extensions page.
const char kErrorConsole[] = "error-console";
diff --git a/extensions/common/switches.h b/extensions/common/switches.h
index 7c891d8..af2a0f4 100644
--- a/extensions/common/switches.h
+++ b/extensions/common/switches.h
@@ -23,6 +23,7 @@ extern const char kEnableExtensionActionRedesign[];
extern const char kEnableMojoSerialService[];
extern const char kEnableOverrideBookmarksUI[];
extern const char kEnableBLEAdvertising[];
+extern const char kEnableTabForDesktopShare[];
extern const char kErrorConsole[];
extern const char kExtensionActionRedesign[];
extern const char kExtensionProcess[];