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 534163002: Move app.window API implementation to extensions (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Fix OWNERS Created 6 years, 3 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
« no previous file with comments | « chrome/common/chrome_switches.h ('k') | chrome/common/extensions/api/app_window.idl » ('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 381 matching lines...) Expand 10 before | Expand all | Expand 10 after
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 <window-controls> tag in platform apps.
403 const char kEnableAppWindowControls[] = "enable-app-window-controls";
404
405 // Enable OS integration for Chrome app file associations. 402 // Enable OS integration for Chrome app file associations.
406 const char kEnableAppsFileAssociations[] = "enable-apps-file-associations"; 403 const char kEnableAppsFileAssociations[] = "enable-apps-file-associations";
407 404
408 // Enables the experimental asynchronous DNS client. 405 // Enables the experimental asynchronous DNS client.
409 const char kEnableAsyncDns[] = "enable-async-dns"; 406 const char kEnableAsyncDns[] = "enable-async-dns";
410 407
411 // Enables the inclusion of non-standard ports when generating the Kerberos SPN 408 // Enables the inclusion of non-standard ports when generating the Kerberos SPN
412 // in response to a Negotiate challenge. See 409 // in response to a Negotiate challenge. See
413 // HttpAuthHandlerNegotiate::CreateSPN for more background. 410 // HttpAuthHandlerNegotiate::CreateSPN for more background.
414 const char kEnableAuthNegotiatePort[] = "enable-auth-negotiate-port"; 411 const char kEnableAuthNegotiatePort[] = "enable-auth-negotiate-port";
(...skipping 941 matching lines...) Expand 10 before | Expand all | Expand 10 after
1356 1353
1357 // ----------------------------------------------------------------------------- 1354 // -----------------------------------------------------------------------------
1358 // DO NOT ADD YOUR CRAP TO THE BOTTOM OF THIS FILE. 1355 // DO NOT ADD YOUR CRAP TO THE BOTTOM OF THIS FILE.
1359 // 1356 //
1360 // You were going to just dump your switches here, weren't you? Instead, please 1357 // You were going to just dump your switches here, weren't you? Instead, please
1361 // put them in alphabetical order above, or in order inside the appropriate 1358 // put them in alphabetical order above, or in order inside the appropriate
1362 // ifdef at the bottom. The order should match the header. 1359 // ifdef at the bottom. The order should match the header.
1363 // ----------------------------------------------------------------------------- 1360 // -----------------------------------------------------------------------------
1364 1361
1365 } // namespace switches 1362 } // namespace switches
OLDNEW
« no previous file with comments | « chrome/common/chrome_switches.h ('k') | chrome/common/extensions/api/app_window.idl » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698