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

Side by Side Diff: content/public/common/content_switches.cc

Issue 16362004: Move a BrowserContextKeyedService-specific switch (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: rebase Created 7 years, 6 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
« no previous file with comments | « content/public/common/content_switches.h ('k') | no next file » | 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 "content/public/common/content_switches.h" 5 #include "content/public/common/content_switches.h"
6 6
7 namespace switches { 7 namespace switches {
8 8
9 // By default, file:// URIs cannot read other file:// URIs. This is an 9 // By default, file:// URIs cannot read other file:// URIs. This is an
10 // override for developers who need the old behavior for testing. 10 // override for developers who need the old behavior for testing.
(...skipping 792 matching lines...) Expand 10 before | Expand all | Expand 10 after
803 #endif 803 #endif
804 804
805 // Disables the use of a 3D software rasterizer. 805 // Disables the use of a 3D software rasterizer.
806 const char kDisableSoftwareRasterizer[] = "disable-software-rasterizer"; 806 const char kDisableSoftwareRasterizer[] = "disable-software-rasterizer";
807 807
808 #if defined(USE_AURA) 808 #if defined(USE_AURA)
809 // Forces usage of the test compositor. Needed to run ui tests on bots. 809 // Forces usage of the test compositor. Needed to run ui tests on bots.
810 extern const char kTestCompositor[] = "test-compositor"; 810 extern const char kTestCompositor[] = "test-compositor";
811 #endif 811 #endif
812 812
813 #ifndef NDEBUG
814 // Dumps dependency information about our browser context keyed services
815 // into a dot file in the browser context directory.
816 const char kDumpBrowserContextDependencyGraph[] = "dump-browser-context-graph";
817 #endif
818
819 // Sets the tile size used by composited layers. 813 // Sets the tile size used by composited layers.
820 const char kDefaultTileWidth[] = "default-tile-width"; 814 const char kDefaultTileWidth[] = "default-tile-width";
821 const char kDefaultTileHeight[] = "default-tile-height"; 815 const char kDefaultTileHeight[] = "default-tile-height";
822 816
823 // Sets the width and height above which a composited layer will get tiled. 817 // Sets the width and height above which a composited layer will get tiled.
824 const char kMaxUntiledLayerWidth[] = "max-untiled-layer-width"; 818 const char kMaxUntiledLayerWidth[] = "max-untiled-layer-width";
825 const char kMaxUntiledLayerHeight[] = "max-untiled-layer-height"; 819 const char kMaxUntiledLayerHeight[] = "max-untiled-layer-height";
826 820
827 // Use ExynosVideoDecodeAccelerator for video decode (instead of SECOMX) 821 // Use ExynosVideoDecodeAccelerator for video decode (instead of SECOMX)
828 const char kUseExynosVda[] = "use-exynos-vda"; 822 const char kUseExynosVda[] = "use-exynos-vda";
(...skipping 21 matching lines...) Expand all
850 // Forward overscroll event data from the renderer to the browser. 844 // Forward overscroll event data from the renderer to the browser.
851 const char kEnableOverscrollNotifications[] = "enable-overscroll-notifications"; 845 const char kEnableOverscrollNotifications[] = "enable-overscroll-notifications";
852 846
853 // Enables 'image/webp' accept header for image requests. 847 // Enables 'image/webp' accept header for image requests.
854 const char kEnableWebPInAcceptHeader[] = "enable-webp-in-accept-header"; 848 const char kEnableWebPInAcceptHeader[] = "enable-webp-in-accept-header";
855 849
856 // Enables WebGL extensions not yet approved by the community. 850 // Enables WebGL extensions not yet approved by the community.
857 const char kEnableWebGLDraftExtensions[] = "enable-webgl-draft-extensions"; 851 const char kEnableWebGLDraftExtensions[] = "enable-webgl-draft-extensions";
858 852
859 } // namespace switches 853 } // namespace switches
OLDNEW
« no previous file with comments | « content/public/common/content_switches.h ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698