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

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

Issue 7529011: Add a flag that lets the webstore show a different UI on app install. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: removed files added in separate CL (r95432) Created 9 years, 4 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 | « chrome/app/generated_resources.grd ('k') | chrome/browser/extensions/crx_installer.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) 2011 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2011 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 170 matching lines...) Expand 10 before | Expand all | Expand 10 after
181 SINGLE_VALUE_TYPE(switches::kEnableNaCl) 181 SINGLE_VALUE_TYPE(switches::kEnableNaCl)
182 }, 182 },
183 { 183 {
184 "extension-apis", // FLAGS:RECORD_UMA 184 "extension-apis", // FLAGS:RECORD_UMA
185 IDS_FLAGS_EXPERIMENTAL_EXTENSION_APIS_NAME, 185 IDS_FLAGS_EXPERIMENTAL_EXTENSION_APIS_NAME,
186 IDS_FLAGS_EXPERIMENTAL_EXTENSION_APIS_DESCRIPTION, 186 IDS_FLAGS_EXPERIMENTAL_EXTENSION_APIS_DESCRIPTION,
187 kOsAll, 187 kOsAll,
188 SINGLE_VALUE_TYPE(switches::kEnableExperimentalExtensionApis) 188 SINGLE_VALUE_TYPE(switches::kEnableExperimentalExtensionApis)
189 }, 189 },
190 { 190 {
191 "apps-new-install-bubble",
192 IDS_FLAGS_APPS_NEW_INSTALL_BUBBLE_NAME,
193 IDS_FLAGS_APPS_NEW_INSTALL_BUBBLE_DESCRIPTION,
194 kOsAll,
195 SINGLE_VALUE_TYPE(switches::kAppsNewInstallBubble)
196 },
197 {
191 "click-to-play", // FLAGS:RECORD_UMA 198 "click-to-play", // FLAGS:RECORD_UMA
192 IDS_FLAGS_CLICK_TO_PLAY_NAME, 199 IDS_FLAGS_CLICK_TO_PLAY_NAME,
193 IDS_FLAGS_CLICK_TO_PLAY_DESCRIPTION, 200 IDS_FLAGS_CLICK_TO_PLAY_DESCRIPTION,
194 kOsAll, 201 kOsAll,
195 SINGLE_VALUE_TYPE(switches::kEnableClickToPlay) 202 SINGLE_VALUE_TYPE(switches::kEnableClickToPlay)
196 }, 203 },
197 { 204 {
198 "disable-hyperlink-auditing", 205 "disable-hyperlink-auditing",
199 IDS_FLAGS_DISABLE_HYPERLINK_AUDITING_NAME, 206 IDS_FLAGS_DISABLE_HYPERLINK_AUDITING_NAME,
200 IDS_FLAGS_DISABLE_HYPERLINK_AUDITING_DESCRIPTION, 207 IDS_FLAGS_DISABLE_HYPERLINK_AUDITING_DESCRIPTION,
(...skipping 580 matching lines...) Expand 10 before | Expand all | Expand 10 after
781 } 788 }
782 789
783 const Experiment* GetExperiments(size_t* count) { 790 const Experiment* GetExperiments(size_t* count) {
784 *count = num_experiments; 791 *count = num_experiments;
785 return experiments; 792 return experiments;
786 } 793 }
787 794
788 } // namespace testing 795 } // namespace testing
789 796
790 } // namespace about_flags 797 } // namespace about_flags
OLDNEW
« no previous file with comments | « chrome/app/generated_resources.grd ('k') | chrome/browser/extensions/crx_installer.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698