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

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

Issue 353013007: Implement <appview> skeleton. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@app_view_skeleton
Patch Set: Addressed comments Created 6 years, 5 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 9
10 namespace switches { 10 namespace switches {
(...skipping 407 matching lines...) Expand 10 before | Expand all | Expand 10 after
418 // supervised user sends an access request. 418 // supervised user sends an access request.
419 extern const char kEnableAccessRequestNotifications[] = 419 extern const char kEnableAccessRequestNotifications[] =
420 "enable-access-request-notifications"; 420 "enable-access-request-notifications";
421 421
422 // Enables the experimental Answers in Suggest feature. 422 // Enables the experimental Answers in Suggest feature.
423 const char kEnableAnswersInSuggest[] = "enable-answers-in-suggest"; 423 const char kEnableAnswersInSuggest[] = "enable-answers-in-suggest";
424 424
425 // If set, the app list will be enabled as if enabled from CWS. 425 // If set, the app list will be enabled as if enabled from CWS.
426 const char kEnableAppList[] = "enable-app-list"; 426 const char kEnableAppList[] = "enable-app-list";
427 427
428 // Enables the <appview> tag in platform apps.
429 const char kEnableAppView[] = "enable-app-view";
430
428 // Enables the <window-controls> tag in platform apps. 431 // Enables the <window-controls> tag in platform apps.
429 const char kEnableAppWindowControls[] = "enable-app-window-controls"; 432 const char kEnableAppWindowControls[] = "enable-app-window-controls";
430 433
431 // Enable OS integration for Chrome app file associations. 434 // Enable OS integration for Chrome app file associations.
432 const char kEnableAppsFileAssociations[] = "enable-apps-file-associations"; 435 const char kEnableAppsFileAssociations[] = "enable-apps-file-associations";
433 436
434 // Show apps windows after the first paint. Windows will be shown significantly 437 // Show apps windows after the first paint. Windows will be shown significantly
435 // later for heavy apps loading resources synchronously but it will be 438 // later for heavy apps loading resources synchronously but it will be
436 // insignificant for apps that load most of their resources asynchronously. 439 // insignificant for apps that load most of their resources asynchronously.
437 const char kEnableAppsShowOnFirstPaint[] = "enable-apps-show-on-first-paint"; 440 const char kEnableAppsShowOnFirstPaint[] = "enable-apps-show-on-first-paint";
(...skipping 976 matching lines...) Expand 10 before | Expand all | Expand 10 after
1414 1417
1415 // ----------------------------------------------------------------------------- 1418 // -----------------------------------------------------------------------------
1416 // DO NOT ADD YOUR CRAP TO THE BOTTOM OF THIS FILE. 1419 // DO NOT ADD YOUR CRAP TO THE BOTTOM OF THIS FILE.
1417 // 1420 //
1418 // You were going to just dump your switches here, weren't you? Instead, please 1421 // You were going to just dump your switches here, weren't you? Instead, please
1419 // put them in alphabetical order above, or in order inside the appropriate 1422 // put them in alphabetical order above, or in order inside the appropriate
1420 // ifdef at the bottom. The order should match the header. 1423 // ifdef at the bottom. The order should match the header.
1421 // ----------------------------------------------------------------------------- 1424 // -----------------------------------------------------------------------------
1422 1425
1423 } // namespace switches 1426 } // namespace switches
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698