OLD | NEW |
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 Loading... |
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 */) |
OLD | NEW |