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

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: 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 1993 matching lines...) Expand 10 before | Expand all | Expand 10 after
2004 IPC_MESSAGE_ROUTED0(ViewHostMsg_UnlockMouse) 2004 IPC_MESSAGE_ROUTED0(ViewHostMsg_UnlockMouse)
2005 2005
2006 // Following message is used to communicate the values received by the 2006 // Following message is used to communicate the values received by the
2007 // callback binding the JS to Cpp. 2007 // callback binding the JS to Cpp.
2008 // An instance of browser that has an automation host listening to it can 2008 // An instance of browser that has an automation host listening to it can
2009 // have a javascript send a native value (string, number, boolean) to the 2009 // have a javascript send a native value (string, number, boolean) to the
2010 // listener in Cpp. (DomAutomationController) 2010 // listener in Cpp. (DomAutomationController)
2011 IPC_MESSAGE_ROUTED2(ViewHostMsg_DomOperationResponse, 2011 IPC_MESSAGE_ROUTED2(ViewHostMsg_DomOperationResponse,
2012 std::string /* json_string */, 2012 std::string /* json_string */,
2013 int /* automation_id */) 2013 int /* automation_id */)
2014
2015 // Enable or disable inverting of web content pixels, for users who prefer
2016 // white-on-black.
2017 IPC_MESSAGE_ROUTED1(ViewMsg_InvertWebContent,
2018 bool /* invert */)
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698