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

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

Issue 2564973002: Add an infobar if a session is being controlled by an automated test. (Closed)
Patch Set: make destructor private Created 3 years, 10 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
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/chrome_switches.h" 5 #include "chrome/common/chrome_switches.h"
6 6
7 #include "base/base_switches.h" 7 #include "base/base_switches.h"
8 #include "base/command_line.h" 8 #include "base/command_line.h"
9 #include "build/build_config.h" 9 #include "build/build_config.h"
10 #include "ppapi/features/features.h" 10 #include "ppapi/features/features.h"
(...skipping 286 matching lines...) Expand 10 before | Expand all | Expand 10 after
297 const char kEasyUnlockAppPath[] = "easy-unlock-app-path"; 297 const char kEasyUnlockAppPath[] = "easy-unlock-app-path";
298 298
299 // Enables the display of a banner allowing the user to add a web 299 // Enables the display of a banner allowing the user to add a web
300 // app to their shelf (or platform-specific equivalent) 300 // app to their shelf (or platform-specific equivalent)
301 const char kEnableAddToShelf[] = "enable-add-to-shelf"; 301 const char kEnableAddToShelf[] = "enable-add-to-shelf";
302 302
303 // If the WebRTC logging private API is active, enables audio debug recordings. 303 // If the WebRTC logging private API is active, enables audio debug recordings.
304 const char kEnableAudioDebugRecordingsFromExtension[] = 304 const char kEnableAudioDebugRecordingsFromExtension[] =
305 "enable-audio-debug-recordings-from-extension"; 305 "enable-audio-debug-recordings-from-extension";
306 306
307 // Inform users that their browser is being controlled by an automated test.
308 const char kEnableAutomation[] = "enable-automation";
309
307 // Enables the benchmarking extensions. 310 // Enables the benchmarking extensions.
308 const char kEnableBenchmarking[] = "enable-benchmarking"; 311 const char kEnableBenchmarking[] = "enable-benchmarking";
309 312
310 // Enables the multi-level undo system for bookmarks. 313 // Enables the multi-level undo system for bookmarks.
311 const char kEnableBookmarkUndo[] = "enable-bookmark-undo"; 314 const char kEnableBookmarkUndo[] = "enable-bookmark-undo";
312 315
313 // Enables data volume counters in the Clear Browsing Data dialog. 316 // Enables data volume counters in the Clear Browsing Data dialog.
314 const char kEnableClearBrowsingDataCounters[] = 317 const char kEnableClearBrowsingDataCounters[] =
315 "enable-clear-browsing-data-counters"; 318 "enable-clear-browsing-data-counters";
316 319
(...skipping 845 matching lines...) Expand 10 before | Expand all | Expand 10 after
1162 1165
1163 // ----------------------------------------------------------------------------- 1166 // -----------------------------------------------------------------------------
1164 // DO NOT ADD YOUR VERY NICE FLAGS TO THE BOTTOM OF THIS FILE. 1167 // DO NOT ADD YOUR VERY NICE FLAGS TO THE BOTTOM OF THIS FILE.
1165 // 1168 //
1166 // You were going to just dump your switches here, weren't you? Instead, please 1169 // You were going to just dump your switches here, weren't you? Instead, please
1167 // put them in alphabetical order above, or in order inside the appropriate 1170 // put them in alphabetical order above, or in order inside the appropriate
1168 // ifdef at the bottom. The order should match the header. 1171 // ifdef at the bottom. The order should match the header.
1169 // ----------------------------------------------------------------------------- 1172 // -----------------------------------------------------------------------------
1170 1173
1171 } // namespace switches 1174 } // namespace switches
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698