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

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

Issue 9234076: Implementation of the Extension Activity Log UI behind a flag. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Address remaining comments. Created 8 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 | Annotate | Revision Log
« no previous file with comments | « chrome/common/chrome_switches.h ('k') | chrome/common/url_constants.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) 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 9
10 namespace switches { 10 namespace switches {
(...skipping 485 matching lines...) Expand 10 before | Expand all | Expand 10 after
496 const char kEnableDevToolsExperiments[] = "enable-devtools-experiments"; 496 const char kEnableDevToolsExperiments[] = "enable-devtools-experiments";
497 497
498 // Enables extension APIs that are in development. 498 // Enables extension APIs that are in development.
499 const char kEnableExperimentalExtensionApis[] = 499 const char kEnableExperimentalExtensionApis[] =
500 "enable-experimental-extension-apis"; 500 "enable-experimental-extension-apis";
501 501
502 // Enables logging for extension activity. 502 // Enables logging for extension activity.
503 const char kEnableExtensionActivityLogging[] = 503 const char kEnableExtensionActivityLogging[] =
504 "enable-extension-activity-logging"; 504 "enable-extension-activity-logging";
505 505
506 // Enables the extension activity UI.
507 const char kEnableExtensionActivityUI[] = "enable-extension-activity-ui";
508
506 // Enables experimental timeline API. 509 // Enables experimental timeline API.
507 const char kEnableExtensionTimelineApi[] = "enable-extension-timeline-api"; 510 const char kEnableExtensionTimelineApi[] = "enable-extension-timeline-api";
508 511
509 // Enables the fastback page cache. 512 // Enables the fastback page cache.
510 const char kEnableFastback[] = "enable-fastback"; 513 const char kEnableFastback[] = "enable-fastback";
511 514
512 // By default, cookies are not allowed on file://. They are needed for testing, 515 // By default, cookies are not allowed on file://. They are needed for testing,
513 // for example page cycler and layout tests. See bug 1157243. 516 // for example page cycler and layout tests. See bug 1157243.
514 const char kEnableFileCookies[] = "enable-file-cookies"; 517 const char kEnableFileCookies[] = "enable-file-cookies";
515 518
(...skipping 865 matching lines...) Expand 10 before | Expand all | Expand 10 after
1381 1384
1382 // ----------------------------------------------------------------------------- 1385 // -----------------------------------------------------------------------------
1383 // DO NOT ADD YOUR CRAP TO THE BOTTOM OF THIS FILE. 1386 // DO NOT ADD YOUR CRAP TO THE BOTTOM OF THIS FILE.
1384 // 1387 //
1385 // You were going to just dump your switches here, weren't you? Instead, please 1388 // You were going to just dump your switches here, weren't you? Instead, please
1386 // put them in alphabetical order above, or in order inside the appropriate 1389 // put them in alphabetical order above, or in order inside the appropriate
1387 // ifdef at the bottom. The order should match the header. 1390 // ifdef at the bottom. The order should match the header.
1388 // ----------------------------------------------------------------------------- 1391 // -----------------------------------------------------------------------------
1389 1392
1390 } // namespace switches 1393 } // namespace switches
OLDNEW
« no previous file with comments | « chrome/common/chrome_switches.h ('k') | chrome/common/url_constants.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698