| 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 2329 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 2340 // custom normalized fractions of the document size. The rects will be sorted by | 2340 // custom normalized fractions of the document size. The rects will be sorted by |
| 2341 // frame traversal order starting in the main frame, then by dom order. | 2341 // frame traversal order starting in the main frame, then by dom order. |
| 2342 // | 2342 // |
| 2343 // |active_rect| will contain the bounding box of the active find-in-page match | 2343 // |active_rect| will contain the bounding box of the active find-in-page match |
| 2344 // marker, in similarly normalized coords (or an empty rect if there isn't one). | 2344 // marker, in similarly normalized coords (or an empty rect if there isn't one). |
| 2345 IPC_MESSAGE_ROUTED3(ViewHostMsg_FindMatchRects_Reply, | 2345 IPC_MESSAGE_ROUTED3(ViewHostMsg_FindMatchRects_Reply, |
| 2346 int /* version */, | 2346 int /* version */, |
| 2347 std::vector<gfx::RectF> /* rects */, | 2347 std::vector<gfx::RectF> /* rects */, |
| 2348 gfx::RectF /* active_rect */) | 2348 gfx::RectF /* active_rect */) |
| 2349 #endif | 2349 #endif |
| 2350 |
| 2351 // Forward client content_debug_logging to the host process's implementation. |
| 2352 IPC_MESSAGE_CONTROL2(ViewHostMsg_ContentDebugRecordMsg, |
| 2353 int /* bug_id */, |
| 2354 std::string /* msg */) |
| 2355 IPC_SYNC_MESSAGE_CONTROL1_2(ViewHostMsg_ContentDebugGetMessages, |
| 2356 int /* bug_id */, |
| 2357 bool /* handled */, |
| 2358 std::vector<std::string> /* msgs */) |
| OLD | NEW |