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

Side by Side Diff: content/common/view_messages.h

Issue 9353012: Add a switch to invert web contents (non-accel only). (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: patch for landing, now that skia change is in Created 8 years, 10 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 // IPC messages for page rendering. 5 // IPC messages for page rendering.
6 // Multiply-included message file, hence no include guard. 6 // Multiply-included message file, hence no include guard.
7 7
8 #include "base/process.h" 8 #include "base/process.h"
9 #include "base/shared_memory.h" 9 #include "base/shared_memory.h"
10 #include "content/common/content_export.h" 10 #include "content/common/content_export.h"
(...skipping 1998 matching lines...) Expand 10 before | Expand all | Expand 10 after
2009 IPC_MESSAGE_ROUTED0(ViewHostMsg_UnlockMouse) 2009 IPC_MESSAGE_ROUTED0(ViewHostMsg_UnlockMouse)
2010 2010
2011 // Following message is used to communicate the values received by the 2011 // Following message is used to communicate the values received by the
2012 // callback binding the JS to Cpp. 2012 // callback binding the JS to Cpp.
2013 // An instance of browser that has an automation host listening to it can 2013 // An instance of browser that has an automation host listening to it can
2014 // have a javascript send a native value (string, number, boolean) to the 2014 // have a javascript send a native value (string, number, boolean) to the
2015 // listener in Cpp. (DomAutomationController) 2015 // listener in Cpp. (DomAutomationController)
2016 IPC_MESSAGE_ROUTED2(ViewHostMsg_DomOperationResponse, 2016 IPC_MESSAGE_ROUTED2(ViewHostMsg_DomOperationResponse,
2017 std::string /* json_string */, 2017 std::string /* json_string */,
2018 int /* automation_id */) 2018 int /* automation_id */)
2019
2020 // Enable or disable inverting of web content pixels, for users who prefer
2021 // white-on-black.
2022 IPC_MESSAGE_ROUTED1(ViewMsg_InvertWebContent,
2023 bool /* invert */)
OLDNEW
« no previous file with comments | « content/browser/renderer_host/render_view_host.cc ('k') | content/public/common/content_switches.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698