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 1998 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
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 */) |
OLD | NEW |