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

Side by Side Diff: chrome/browser/about_flags.cc

Issue 9618022: Ash: Use translucent frames by default (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: leak in CustomFrameViewAsh Created 8 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 | Annotate | Revision Log
« no previous file with comments | « ash/wm/custom_frame_view_ash.cc ('k') | chrome/browser/ui/views/constrained_window_views.cc » ('j') | 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/browser/about_flags.h" 5 #include "chrome/browser/about_flags.h"
6 6
7 #include <algorithm> 7 #include <algorithm>
8 #include <iterator> 8 #include <iterator>
9 #include <map> 9 #include <map>
10 #include <set> 10 #include <set>
(...skipping 433 matching lines...) Expand 10 before | Expand all | Expand 10 after
444 }, 444 },
445 { 445 {
446 "enable-pointer-lock", 446 "enable-pointer-lock",
447 IDS_FLAGS_ENABLE_POINTER_LOCK_NAME, 447 IDS_FLAGS_ENABLE_POINTER_LOCK_NAME,
448 IDS_FLAGS_ENABLE_POINTER_LOCK_DESCRIPTION, 448 IDS_FLAGS_ENABLE_POINTER_LOCK_DESCRIPTION,
449 kOsAll, 449 kOsAll,
450 SINGLE_VALUE_TYPE(switches::kEnablePointerLock) 450 SINGLE_VALUE_TYPE(switches::kEnablePointerLock)
451 }, 451 },
452 #if defined(USE_AURA) 452 #if defined(USE_AURA)
453 { 453 {
454 "aura-translucent-frames",
455 IDS_FLAGS_AURA_TRANSLUCENT_FRAMES_NAME,
456 IDS_FLAGS_AURA_TRANSLUCENT_FRAMES_DESCRIPTION,
457 kOsWin | kOsLinux | kOsCrOS,
458 SINGLE_VALUE_TYPE(ash::switches::kAuraTranslucentFrames)
459 },
460 {
461 "aura-google-dialog-frames", 454 "aura-google-dialog-frames",
462 IDS_FLAGS_AURA_GOOGLE_DIALOG_FRAMES_NAME, 455 IDS_FLAGS_AURA_GOOGLE_DIALOG_FRAMES_NAME,
463 IDS_FLAGS_AURA_GOOGLE_DIALOG_FRAMES_DESCRIPTION, 456 IDS_FLAGS_AURA_GOOGLE_DIALOG_FRAMES_DESCRIPTION,
464 kOsWin | kOsLinux | kOsCrOS, 457 kOsWin | kOsLinux | kOsCrOS,
465 SINGLE_VALUE_TYPE(ash::switches::kAuraGoogleDialogFrames) 458 SINGLE_VALUE_TYPE(ash::switches::kAuraGoogleDialogFrames)
466 }, 459 },
467 { 460 {
468 "aura-window-mode", 461 "aura-window-mode",
469 IDS_FLAGS_AURA_WINDOW_MODE_NAME, 462 IDS_FLAGS_AURA_WINDOW_MODE_NAME,
470 IDS_FLAGS_AURA_WINDOW_MODE_DESCRIPTION, 463 IDS_FLAGS_AURA_WINDOW_MODE_DESCRIPTION,
(...skipping 575 matching lines...) Expand 10 before | Expand all | Expand 10 after
1046 } 1039 }
1047 1040
1048 const Experiment* GetExperiments(size_t* count) { 1041 const Experiment* GetExperiments(size_t* count) {
1049 *count = num_experiments; 1042 *count = num_experiments;
1050 return experiments; 1043 return experiments;
1051 } 1044 }
1052 1045
1053 } // namespace testing 1046 } // namespace testing
1054 1047
1055 } // namespace about_flags 1048 } // namespace about_flags
OLDNEW
« no previous file with comments | « ash/wm/custom_frame_view_ash.cc ('k') | chrome/browser/ui/views/constrained_window_views.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698