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

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

Issue 4277001: [GTK] add instant pref (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: sky review 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/options/general_page_gtk.h » ('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 83 matching lines...) Expand 10 before | Expand all | Expand 10 after
94 "cloud-print-proxy", // Do not change; see above. 94 "cloud-print-proxy", // Do not change; see above.
95 IDS_FLAGS_CLOUD_PRINT_PROXY_NAME, 95 IDS_FLAGS_CLOUD_PRINT_PROXY_NAME,
96 IDS_FLAGS_CLOUD_PRINT_PROXY_DESCRIPTION, 96 IDS_FLAGS_CLOUD_PRINT_PROXY_DESCRIPTION,
97 kOsWin, 97 kOsWin,
98 switches::kEnableCloudPrintProxy 98 switches::kEnableCloudPrintProxy
99 }, 99 },
100 { 100 {
101 "match-preview", // Do not change; see above. 101 "match-preview", // Do not change; see above.
102 IDS_FLAGS_PREDICTIVE_INSTANT_NAME, 102 IDS_FLAGS_PREDICTIVE_INSTANT_NAME,
103 IDS_FLAGS_PREDICTIVE_INSTANT_DESCRIPTION, 103 IDS_FLAGS_PREDICTIVE_INSTANT_DESCRIPTION,
104 kOsMac | kOsLinux, 104 kOsMac,
105 switches::kEnablePredictiveInstant 105 switches::kEnablePredictiveInstant
106 }, 106 },
107 { 107 {
108 "verbatim-instant", // Do not change; see above. 108 "verbatim-instant", // Do not change; see above.
109 IDS_FLAGS_VERBATIM_INSTANT_NAME, 109 IDS_FLAGS_VERBATIM_INSTANT_NAME,
110 IDS_FLAGS_VERBATIM_INSTANT_DESCRIPTION, 110 IDS_FLAGS_VERBATIM_INSTANT_DESCRIPTION,
111 kOsMac | kOsLinux | kOsWin, 111 kOsMac | kOsLinux | kOsWin,
112 switches::kEnableVerbatimInstant 112 switches::kEnableVerbatimInstant
113 }, 113 },
114 // FIXME(scheib): Add Flags entry for accelerated Compositing, 114 // FIXME(scheib): Add Flags entry for accelerated Compositing,
(...skipping 294 matching lines...) Expand 10 before | Expand all | Expand 10 after
409 num_experiments = arraysize(kExperiments); 409 num_experiments = arraysize(kExperiments);
410 } else { 410 } else {
411 experiments = e; 411 experiments = e;
412 num_experiments = count; 412 num_experiments = count;
413 } 413 }
414 } 414 }
415 415
416 } // namespace testing 416 } // namespace testing
417 417
418 } // namespace about_flags 418 } // namespace about_flags
OLDNEW
« no previous file with comments | « no previous file | chrome/browser/gtk/options/general_page_gtk.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698