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

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

Issue 64803005: File association for app shims. (Mac) (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Redo after refactoring. Put behind flag. Tests. Created 6 years, 8 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
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 432 matching lines...) Expand 10 before | Expand all | Expand 10 after
443 443
444 // Enables the <adview> tag in packaged apps. 444 // Enables the <adview> tag in packaged apps.
445 const char kEnableAdview[] = "enable-adview"; 445 const char kEnableAdview[] = "enable-adview";
446 446
447 // If set, the app list will be enabled as if enabled from CWS. 447 // If set, the app list will be enabled as if enabled from CWS.
448 const char kEnableAppList[] = "enable-app-list"; 448 const char kEnableAppList[] = "enable-app-list";
449 449
450 // Enables the <window-controls> tag in platform apps. 450 // Enables the <window-controls> tag in platform apps.
451 const char kEnableAppWindowControls[] = "enable-app-window-controls"; 451 const char kEnableAppWindowControls[] = "enable-app-window-controls";
452 452
453 // Enable OS integration for Chrome app file associations.
454 const char kEnableAppsFileAssociations[] = "enable-apps-file-associations";
455
453 // Show apps windows after the first paint. Windows will be shown significantly 456 // Show apps windows after the first paint. Windows will be shown significantly
454 // later for heavy apps loading resources synchronously but it will be 457 // later for heavy apps loading resources synchronously but it will be
455 // insignificant for apps that load most of their resources asynchronously. 458 // insignificant for apps that load most of their resources asynchronously.
456 const char kEnableAppsShowOnFirstPaint[] = "enable-apps-show-on-first-paint"; 459 const char kEnableAppsShowOnFirstPaint[] = "enable-apps-show-on-first-paint";
457 460
458 // Enables the experimental asynchronous DNS client. 461 // Enables the experimental asynchronous DNS client.
459 const char kEnableAsyncDns[] = "enable-async-dns"; 462 const char kEnableAsyncDns[] = "enable-async-dns";
460 463
461 // Enables the inclusion of non-standard ports when generating the Kerberos SPN 464 // Enables the inclusion of non-standard ports when generating the Kerberos SPN
462 // in response to a Negotiate challenge. See 465 // in response to a Negotiate challenge. See
(...skipping 1048 matching lines...) Expand 10 before | Expand all | Expand 10 after
1511 1514
1512 // ----------------------------------------------------------------------------- 1515 // -----------------------------------------------------------------------------
1513 // DO NOT ADD YOUR CRAP TO THE BOTTOM OF THIS FILE. 1516 // DO NOT ADD YOUR CRAP TO THE BOTTOM OF THIS FILE.
1514 // 1517 //
1515 // You were going to just dump your switches here, weren't you? Instead, please 1518 // You were going to just dump your switches here, weren't you? Instead, please
1516 // put them in alphabetical order above, or in order inside the appropriate 1519 // put them in alphabetical order above, or in order inside the appropriate
1517 // ifdef at the bottom. The order should match the header. 1520 // ifdef at the bottom. The order should match the header.
1518 // ----------------------------------------------------------------------------- 1521 // -----------------------------------------------------------------------------
1519 1522
1520 } // namespace switches 1523 } // namespace switches
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698