diff options
author | dmazzoni@chromium.org <dmazzoni@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2012-02-10 21:55:42 +0000 |
---|---|---|
committer | dmazzoni@chromium.org <dmazzoni@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2012-02-10 21:55:42 +0000 |
commit | 4e4412b70091791690e6c88e6ca9802f293c9c63 (patch) | |
tree | 8cda9805025b604ca38676616cb4a5311e61f9ff /content/public | |
parent | 9b05cce5f8359069f5326cf7b60983fd804d7892 (diff) | |
download | chromium_src-4e4412b70091791690e6c88e6ca9802f293c9c63.zip chromium_src-4e4412b70091791690e6c88e6ca9802f293c9c63.tar.gz chromium_src-4e4412b70091791690e6c88e6ca9802f293c9c63.tar.bz2 |
Revert 121541 - Add a switch to invert web contents (non-accel only).
The switch will just be used during development of this feature.
The idea is for this to be turned automatically for Windows users
who enable an inverted (white-on-black) color scheme - see bug
for detail.
This first patch only handles the non-accelerated graphics path;
a subsequent change will handle the accelerated path.
BUG=112944
TEST=manually test with --invert-web-contents switch
Committed: http://src.chromium.org/viewvc/chrome?view=rev&revision=120928
Review URL: http://codereview.chromium.org/9353012
TBR=dmazzoni@chromium.org
Review URL: https://chromiumcodereview.appspot.com/9379022
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@121551 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'content/public')
-rw-r--r-- | content/public/common/content_switches.cc | 4 | ||||
-rw-r--r-- | content/public/common/content_switches.h | 1 |
2 files changed, 0 insertions, 5 deletions
diff --git a/content/public/common/content_switches.cc b/content/public/common/content_switches.cc index 0bec7fa..6baf3c7 100644 --- a/content/public/common/content_switches.cc +++ b/content/public/common/content_switches.cc @@ -373,10 +373,6 @@ const char kInProcessPlugins[] = "in-process-plugins"; // Runs WebGL inside the renderer process. const char kInProcessWebGL[] = "in-process-webgl"; -// Invert web content pixels, for users who prefer white-on-black. -// (Temporary, just during development and testing of this feature.) -const char kInvertWebContent[] = "invert-web-content"; - // Specifies the flags passed to JS engine const char kJavaScriptFlags[] = "js-flags"; diff --git a/content/public/common/content_switches.h b/content/public/common/content_switches.h index f271ebd..6802555 100644 --- a/content/public/common/content_switches.h +++ b/content/public/common/content_switches.h @@ -117,7 +117,6 @@ CONTENT_EXPORT extern const char kIgnoreGpuBlacklist[]; extern const char kInProcessGPU[]; extern const char kInProcessPlugins[]; CONTENT_EXPORT extern const char kInProcessWebGL[]; -CONTENT_EXPORT extern const char kInvertWebContent[]; CONTENT_EXPORT extern const char kJavaScriptFlags[]; extern const char kLoadPlugin[]; CONTENT_EXPORT extern const char kLoggingLevel[]; |