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

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

Issue 6201005: Initial support for partitioning cookies for isolated apps. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Refactor to use ContentBrowserClient. Created 9 years, 9 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) 2011 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2011 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 439 matching lines...) Expand 10 before | Expand all | Expand 10 after
450 // Enables device motion events. 450 // Enables device motion events.
451 const char kEnableDeviceMotion[] = "enable-device-motion"; 451 const char kEnableDeviceMotion[] = "enable-device-motion";
452 452
453 // Enable DNS side checking of certificates. Still experimental, should only 453 // Enable DNS side checking of certificates. Still experimental, should only
454 // be used by developers at the current time. 454 // be used by developers at the current time.
455 const char kEnableDNSCertProvenanceChecking[] = 455 const char kEnableDNSCertProvenanceChecking[] =
456 "enable-dns-cert-provenance-checking"; 456 "enable-dns-cert-provenance-checking";
457 457
458 const char kEnableDNSSECCerts[] = "enable-dnssec-certs"; 458 const char kEnableDNSSECCerts[] = "enable-dnssec-certs";
459 459
460 // Enables app manifest features that are in development.
461 const char kEnableExperimentalAppManifests[] =
462 "enable-experimental-app-manifests";
463
460 // Enables extension APIs that are in development. 464 // Enables extension APIs that are in development.
461 const char kEnableExperimentalExtensionApis[] = 465 const char kEnableExperimentalExtensionApis[] =
462 "enable-experimental-extension-apis"; 466 "enable-experimental-extension-apis";
463 467
464 // Enable experimental timeline API. 468 // Enable experimental timeline API.
465 const char kEnableExtensionTimelineApi[] = "enable-extension-timeline-api"; 469 const char kEnableExtensionTimelineApi[] = "enable-extension-timeline-api";
466 470
467 // Enable the fastback page cache. 471 // Enable the fastback page cache.
468 const char kEnableFastback[] = "enable-fastback"; 472 const char kEnableFastback[] = "enable-fastback";
469 473
(...skipping 727 matching lines...) Expand 10 before | Expand all | Expand 10 after
1197 1201
1198 // ----------------------------------------------------------------------------- 1202 // -----------------------------------------------------------------------------
1199 // DO NOT ADD YOUR CRAP TO THE BOTTOM OF THIS FILE. 1203 // DO NOT ADD YOUR CRAP TO THE BOTTOM OF THIS FILE.
1200 // 1204 //
1201 // You were going to just dump your switches here, weren't you? Instead, 1205 // You were going to just dump your switches here, weren't you? Instead,
1202 // please put them in alphabetical order above, or in order inside the 1206 // please put them in alphabetical order above, or in order inside the
1203 // appropriate ifdef at the bottom. The order should match the header. 1207 // appropriate ifdef at the bottom. The order should match the header.
1204 // ----------------------------------------------------------------------------- 1208 // -----------------------------------------------------------------------------
1205 1209
1206 } // namespace switches 1210 } // namespace switches
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698