diff options
-rw-r--r-- | chrome/common/pref_names.cc | 4 | ||||
-rw-r--r-- | chrome/common/pref_names.h | 2 |
2 files changed, 6 insertions, 0 deletions
diff --git a/chrome/common/pref_names.cc b/chrome/common/pref_names.cc index c4d78d9..09cca77 100644 --- a/chrome/common/pref_names.cc +++ b/chrome/common/pref_names.cc @@ -779,6 +779,10 @@ const wchar_t kNumFoldersInOtherBookmarkFolder[] = // Number of keywords. const wchar_t kNumKeywords[] = L"user_experience_metrics.num_keywords"; +// Placeholder preference for disabling voice / video chat if it is ever added. +// Currently, this does not change any behavior. +const wchar_t kDisableVideoAndChat[] = L"disable_video_chat"; + // Whether Extensions are enabled. const wchar_t kDisableExtensions[] = L"extensions.disabled"; diff --git a/chrome/common/pref_names.h b/chrome/common/pref_names.h index ca9ff0a..61763e0 100644 --- a/chrome/common/pref_names.h +++ b/chrome/common/pref_names.h @@ -283,6 +283,8 @@ extern const wchar_t kNumFoldersInOtherBookmarkFolder[]; extern const wchar_t kNumKeywords[]; +extern const wchar_t kDisableVideoAndChat[]; + extern const wchar_t kDisableExtensions[]; extern const wchar_t kShowExtensionShelf[]; extern const wchar_t kBrowserActionContainerWidth[]; |