OLD | NEW |
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 381 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
392 // Requests that a running browser process dump its collected histograms to a | 392 // Requests that a running browser process dump its collected histograms to a |
393 // given file. The file is overwritten if it exists. | 393 // given file. The file is overwritten if it exists. |
394 const char kDumpBrowserHistograms[] = "dump-browser-histograms"; | 394 const char kDumpBrowserHistograms[] = "dump-browser-histograms"; |
395 | 395 |
396 // Overrides the path of Easy Unlock component app. | 396 // Overrides the path of Easy Unlock component app. |
397 extern const char kEasyUnlockAppPath[] = "easy-unlock-app-path"; | 397 extern const char kEasyUnlockAppPath[] = "easy-unlock-app-path"; |
398 | 398 |
399 // If set, the app list will be enabled as if enabled from CWS. | 399 // If set, the app list will be enabled as if enabled from CWS. |
400 const char kEnableAppList[] = "enable-app-list"; | 400 const char kEnableAppList[] = "enable-app-list"; |
401 | 401 |
402 // Enables the <appview> tag in platform apps. | |
403 const char kEnableAppView[] = "enable-app-view"; | |
404 | |
405 // Enables the <window-controls> tag in platform apps. | 402 // Enables the <window-controls> tag in platform apps. |
406 const char kEnableAppWindowControls[] = "enable-app-window-controls"; | 403 const char kEnableAppWindowControls[] = "enable-app-window-controls"; |
407 | 404 |
408 // Enable OS integration for Chrome app file associations. | 405 // Enable OS integration for Chrome app file associations. |
409 const char kEnableAppsFileAssociations[] = "enable-apps-file-associations"; | 406 const char kEnableAppsFileAssociations[] = "enable-apps-file-associations"; |
410 | 407 |
411 // Show apps windows after the first paint. Windows will be shown significantly | 408 // Show apps windows after the first paint. Windows will be shown significantly |
412 // later for heavy apps loading resources synchronously but it will be | 409 // later for heavy apps loading resources synchronously but it will be |
413 // insignificant for apps that load most of their resources asynchronously. | 410 // insignificant for apps that load most of their resources asynchronously. |
414 const char kEnableAppsShowOnFirstPaint[] = "enable-apps-show-on-first-paint"; | 411 const char kEnableAppsShowOnFirstPaint[] = "enable-apps-show-on-first-paint"; |
(...skipping 958 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1373 | 1370 |
1374 // ----------------------------------------------------------------------------- | 1371 // ----------------------------------------------------------------------------- |
1375 // DO NOT ADD YOUR CRAP TO THE BOTTOM OF THIS FILE. | 1372 // DO NOT ADD YOUR CRAP TO THE BOTTOM OF THIS FILE. |
1376 // | 1373 // |
1377 // You were going to just dump your switches here, weren't you? Instead, please | 1374 // You were going to just dump your switches here, weren't you? Instead, please |
1378 // put them in alphabetical order above, or in order inside the appropriate | 1375 // put them in alphabetical order above, or in order inside the appropriate |
1379 // ifdef at the bottom. The order should match the header. | 1376 // ifdef at the bottom. The order should match the header. |
1380 // ----------------------------------------------------------------------------- | 1377 // ----------------------------------------------------------------------------- |
1381 | 1378 |
1382 } // namespace switches | 1379 } // namespace switches |
OLD | NEW |