| OLD | NEW |
| 1 // Copyright (c) 2006-2009 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2006-2009 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 | 8 |
| 9 namespace switches { | 9 namespace switches { |
| 10 | 10 |
| (...skipping 261 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 272 // dependency on chrome module). Please change both locations at the same time. | 272 // dependency on chrome module). Please change both locations at the same time. |
| 273 const wchar_t kAllowAllActiveX[] = L"allow-all-activex"; | 273 const wchar_t kAllowAllActiveX[] = L"allow-all-activex"; |
| 274 | 274 |
| 275 // Browser flag to disable the web inspector for all renderers. | 275 // Browser flag to disable the web inspector for all renderers. |
| 276 const wchar_t kDisableDevTools[] = L"disable-dev-tools"; | 276 const wchar_t kDisableDevTools[] = L"disable-dev-tools"; |
| 277 | 277 |
| 278 // Enable web inspector for all windows, even if they're part of the browser. | 278 // Enable web inspector for all windows, even if they're part of the browser. |
| 279 // Allows us to use our dev tools to debug browser windows itself. | 279 // Allows us to use our dev tools to debug browser windows itself. |
| 280 const wchar_t kAlwaysEnableDevTools[] = L"always-enable-dev-tools"; | 280 const wchar_t kAlwaysEnableDevTools[] = L"always-enable-dev-tools"; |
| 281 | 281 |
| 282 // Enable experimental timeline API. |
| 283 const wchar_t kEnableExtensionTimelineApi[] = |
| 284 L"enable-extension-timeline-api"; |
| 285 |
| 282 // Used to set the value of SessionRestore::num_tabs_to_load_. See | 286 // Used to set the value of SessionRestore::num_tabs_to_load_. See |
| 283 // session_restore.h for details. | 287 // session_restore.h for details. |
| 284 const wchar_t kTabCountToLoadOnSessionRestore[] = | 288 const wchar_t kTabCountToLoadOnSessionRestore[] = |
| 285 L"tab-count-to-load-on-session-restore"; | 289 L"tab-count-to-load-on-session-restore"; |
| 286 | 290 |
| 287 // Enable dynamic loading of the Memory Profiler DLL, which will trace | 291 // Enable dynamic loading of the Memory Profiler DLL, which will trace |
| 288 // all memory allocations during the run. | 292 // all memory allocations during the run. |
| 289 const wchar_t kMemoryProfiling[] = L"memory-profile"; | 293 const wchar_t kMemoryProfiling[] = L"memory-profile"; |
| 290 | 294 |
| 291 // Configure Chrome's memory model. | 295 // Configure Chrome's memory model. |
| (...skipping 293 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 585 // Override the default server used for profile sync. | 589 // Override the default server used for profile sync. |
| 586 const wchar_t kSyncServiceURL[] = L"sync-url"; | 590 const wchar_t kSyncServiceURL[] = L"sync-url"; |
| 587 | 591 |
| 588 #if defined(OS_CHROMEOS) | 592 #if defined(OS_CHROMEOS) |
| 589 // The name of the pipe over which the Chrome OS login manager will send | 593 // The name of the pipe over which the Chrome OS login manager will send |
| 590 // single-sign-on cookies. | 594 // single-sign-on cookies. |
| 591 const wchar_t kCookiePipe[] = L"cookie-pipe"; | 595 const wchar_t kCookiePipe[] = L"cookie-pipe"; |
| 592 #endif | 596 #endif |
| 593 | 597 |
| 594 } // namespace switches | 598 } // namespace switches |
| OLD | NEW |