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

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

Issue 5023001: Handful of related instant changes: (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Fix linux build Created 10 years, 1 month 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 | « no previous file | chrome/browser/gtk/instant_confirm_dialog_gtk.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) 2010 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2010 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 93 matching lines...) Expand 10 before | Expand all | Expand 10 after
104 kOsWin, 104 kOsWin,
105 switches::kEnableCloudPrintProxy 105 switches::kEnableCloudPrintProxy
106 }, 106 },
107 { 107 {
108 "match-preview", // Do not change; see above. 108 "match-preview", // Do not change; see above.
109 IDS_FLAGS_PREDICTIVE_INSTANT_NAME, 109 IDS_FLAGS_PREDICTIVE_INSTANT_NAME,
110 IDS_FLAGS_PREDICTIVE_INSTANT_DESCRIPTION, 110 IDS_FLAGS_PREDICTIVE_INSTANT_DESCRIPTION,
111 kOsMac, 111 kOsMac,
112 switches::kEnablePredictiveInstant 112 switches::kEnablePredictiveInstant
113 }, 113 },
114 {
115 "verbatim-instant", // Do not change; see above.
116 IDS_FLAGS_VERBATIM_INSTANT_NAME,
117 IDS_FLAGS_VERBATIM_INSTANT_DESCRIPTION,
118 kOsMac | kOsLinux | kOsWin,
119 switches::kEnableVerbatimInstant
120 },
121 // FIXME(scheib): Add Flags entry for accelerated Compositing, 114 // FIXME(scheib): Add Flags entry for accelerated Compositing,
122 // or pull it and the strings in generated_resources.grd by Dec 2010 115 // or pull it and the strings in generated_resources.grd by Dec 2010
123 // { 116 // {
124 // "gpu-compositing", // Do not change; see above 117 // "gpu-compositing", // Do not change; see above
125 // IDS_FLAGS_ACCELERATED_COMPOSITING_NAME, 118 // IDS_FLAGS_ACCELERATED_COMPOSITING_NAME,
126 // IDS_FLAGS_ACCELERATED_COMPOSITING_DESCRIPTION, 119 // IDS_FLAGS_ACCELERATED_COMPOSITING_DESCRIPTION,
127 // kOsAll, 120 // kOsAll,
128 // switches::kDisableAcceleratedCompositing 121 // switches::kDisableAcceleratedCompositing
129 // }, 122 // },
130 { 123 {
(...skipping 327 matching lines...) Expand 10 before | Expand all | Expand 10 after
458 num_experiments = arraysize(kExperiments); 451 num_experiments = arraysize(kExperiments);
459 } else { 452 } else {
460 experiments = e; 453 experiments = e;
461 num_experiments = count; 454 num_experiments = count;
462 } 455 }
463 } 456 }
464 457
465 } // namespace testing 458 } // namespace testing
466 459
467 } // namespace about_flags 460 } // namespace about_flags
OLDNEW
« no previous file with comments | « no previous file | chrome/browser/gtk/instant_confirm_dialog_gtk.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698