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

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

Issue 1737413002: Modified the behavior of "Hide Toolbar in Full Screen" (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Feb -> March Created 4 years, 9 months 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
« no previous file with comments | « chrome/common/pref_names.h ('k') | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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/pref_font_webkit_names.h" 9 #include "chrome/common/pref_font_webkit_names.h"
10 10
(...skipping 367 matching lines...) Expand 10 before | Expand all | Expand 10 after
378 // "" (empty string) - undecided 378 // "" (empty string) - undecided
379 // "true" - opt-in (enabled) 379 // "true" - opt-in (enabled)
380 const char kContextualSearchEnabled[] = "search.contextual_search_enabled"; 380 const char kContextualSearchEnabled[] = "search.contextual_search_enabled";
381 #endif 381 #endif
382 382
383 #if defined(OS_MACOSX) 383 #if defined(OS_MACOSX)
384 // Boolean that indicates whether the browser should put up a confirmation 384 // Boolean that indicates whether the browser should put up a confirmation
385 // window when the user is attempting to quit. Mac only. 385 // window when the user is attempting to quit. Mac only.
386 const char kConfirmToQuitEnabled[] = "browser.confirm_to_quit"; 386 const char kConfirmToQuitEnabled[] = "browser.confirm_to_quit";
387 387
388 // Boolean that indicates whether the browser should hide the toolbar when it's 388 // Boolean that indicates whether the browser should show the toolbar when it's
389 // in fullscreen. Mac only. 389 // in fullscreen. Mac only.
390 const char kShowFullscreenToolbar[] = "browser.show_fullscreen_toolbar";
391
392 // TODO(spqchan): Remove this, see crbug.com/590827.
393 // This is being migrated to kShowFullscreenToolbar.
390 const char kHideFullscreenToolbar[] = "browser.hide_fullscreen_toolbar"; 394 const char kHideFullscreenToolbar[] = "browser.hide_fullscreen_toolbar";
391 #endif 395 #endif
392 396
393 // Boolean which specifies whether we should ask the user if we should download 397 // Boolean which specifies whether we should ask the user if we should download
394 // a file (true) or just download it automatically. 398 // a file (true) or just download it automatically.
395 const char kPromptForDownload[] = "download.prompt_for_download"; 399 const char kPromptForDownload[] = "download.prompt_for_download";
396 400
397 // A boolean pref set to true if we're using Link Doctor error pages. 401 // A boolean pref set to true if we're using Link Doctor error pages.
398 const char kAlternateErrorPagesEnabled[] = "alternate_error_pages.enabled"; 402 const char kAlternateErrorPagesEnabled[] = "alternate_error_pages.enabled";
399 403
(...skipping 1776 matching lines...) Expand 10 before | Expand all | Expand 10 after
2176 const char kMediaRouterEnableCloudServices[] = 2180 const char kMediaRouterEnableCloudServices[] =
2177 "media_router.cloudservices.enabled"; 2181 "media_router.cloudservices.enabled";
2178 #endif // defined(GOOGLE_CHROME_BUILD) 2182 #endif // defined(GOOGLE_CHROME_BUILD)
2179 // Whether or not the Media Router first run flow has been acknowledged by the 2183 // Whether or not the Media Router first run flow has been acknowledged by the
2180 // user. 2184 // user.
2181 const char kMediaRouterFirstRunFlowAcknowledged[] = 2185 const char kMediaRouterFirstRunFlowAcknowledged[] =
2182 "media_router.firstrunflow.acknowledged"; 2186 "media_router.firstrunflow.acknowledged";
2183 #endif 2187 #endif
2184 2188
2185 } // namespace prefs 2189 } // namespace prefs
OLDNEW
« no previous file with comments | « chrome/common/pref_names.h ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698