Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(58)

Side by Side Diff: chrome/common/pref_names.cc

Issue 2552203007: Public Sessions - prompt the user for pageCapture requests (Closed)
Patch Set: Unused variable Created 4 years ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2012 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be 2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file. 3 // found in the LICENSE file.
4 4
5 #include "chrome/common/pref_names.h" 5 #include "chrome/common/pref_names.h"
6 6
7 #include "base/macros.h" 7 #include "base/macros.h"
8 #include "build/build_config.h" 8 #include "build/build_config.h"
9 #include "chrome/common/features.h" 9 #include "chrome/common/features.h"
10 #include "chrome/common/pref_font_webkit_names.h" 10 #include "chrome/common/pref_font_webkit_names.h"
(...skipping 1866 matching lines...) Expand 10 before | Expand all | Expand 10 after
1877 const char kReportArcStatusEnabled[] = "arc.status_reporting_enabled"; 1877 const char kReportArcStatusEnabled[] = "arc.status_reporting_enabled";
1878 1878
1879 // Dictionary indicating current network bandwidth throttling settings. 1879 // Dictionary indicating current network bandwidth throttling settings.
1880 // Contains a boolean (is throttling enabled) and two integers (upload rate 1880 // Contains a boolean (is throttling enabled) and two integers (upload rate
1881 // and download rate in kbits/s to throttle to) 1881 // and download rate in kbits/s to throttle to)
1882 const char kNetworkThrottlingEnabled[] = "net.throttling_enabled"; 1882 const char kNetworkThrottlingEnabled[] = "net.throttling_enabled";
1883 1883
1884 // Boolean prefs for the local status of the touchscreen. 1884 // Boolean prefs for the local status of the touchscreen.
1885 const char kTouchscreenEnabledLocal[] = "events.touch_screen.enabled_local"; 1885 const char kTouchscreenEnabledLocal[] = "events.touch_screen.enabled_local";
1886 1886
1887 // Dictionary saving user choices regarding granted permissions to
1888 // extensions/apps for usage of APIs. In Public Sessions API usage is restricted
1889 // to protect the user from a malicious device owner/admin. This dictionary will
1890 // not be persisted across sessions.
1891 const char kPublicSessionPermissionsUserChoiceCache[] =
1892 "public_session.permissions.user_choice_cache";
1893
1887 #endif // defined(OS_CHROMEOS) 1894 #endif // defined(OS_CHROMEOS)
1888 1895
1889 // Whether there is a Flash version installed that supports clearing LSO data. 1896 // Whether there is a Flash version installed that supports clearing LSO data.
1890 const char kClearPluginLSODataEnabled[] = "browser.clear_lso_data_enabled"; 1897 const char kClearPluginLSODataEnabled[] = "browser.clear_lso_data_enabled";
1891 1898
1892 // Whether we should show Pepper Flash-specific settings. 1899 // Whether we should show Pepper Flash-specific settings.
1893 const char kPepperFlashSettingsEnabled[] = 1900 const char kPepperFlashSettingsEnabled[] =
1894 "browser.pepper_flash_settings_enabled"; 1901 "browser.pepper_flash_settings_enabled";
1895 1902
1896 // String which specifies where to store the disk cache. 1903 // String which specifies where to store the disk cache.
(...skipping 433 matching lines...) Expand 10 before | Expand all | Expand 10 after
2330 const char kSearchGeolocationPreDisclosureMetricsRecorded[] = 2337 const char kSearchGeolocationPreDisclosureMetricsRecorded[] =
2331 "search_geolocation_pre_disclosure_metrics_recorded"; 2338 "search_geolocation_pre_disclosure_metrics_recorded";
2332 2339
2333 // Whether the metrics for the state of geolocation post-disclosure being shown 2340 // Whether the metrics for the state of geolocation post-disclosure being shown
2334 // have been recorded. 2341 // have been recorded.
2335 const char kSearchGeolocationPostDisclosureMetricsRecorded[] = 2342 const char kSearchGeolocationPostDisclosureMetricsRecorded[] =
2336 "search_geolocation_post_disclosure_metrics_recorded"; 2343 "search_geolocation_post_disclosure_metrics_recorded";
2337 #endif 2344 #endif
2338 2345
2339 } // namespace prefs 2346 } // namespace prefs
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698