| 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 1379 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1390 string16 /* search_string */, | 1390 string16 /* search_string */, |
| 1391 WebKit::WebFindOptions /* options */, | 1391 WebKit::WebFindOptions /* options */, |
| 1392 int /* match_count */, | 1392 int /* match_count */, |
| 1393 int /* active_ordinal */) | 1393 int /* active_ordinal */) |
| 1394 | 1394 |
| 1395 // External popup menus. | 1395 // External popup menus. |
| 1396 IPC_MESSAGE_ROUTED2(ViewMsg_SelectPopupMenuItems, | 1396 IPC_MESSAGE_ROUTED2(ViewMsg_SelectPopupMenuItems, |
| 1397 bool /* user canceled the popup */, | 1397 bool /* user canceled the popup */, |
| 1398 std::vector<int> /* selected indices */) | 1398 std::vector<int> /* selected indices */) |
| 1399 | 1399 |
| 1400 // Tells the renderer to try to revert to the zoom level we were at before |
| 1401 // ViewMsg_ScrollFocusedEditableNodeIntoView was called. |
| 1402 IPC_MESSAGE_ROUTED0(ViewMsg_UndoScrollFocusedEditableNodeIntoView) |
| 1403 |
| 1400 #elif defined(OS_MACOSX) | 1404 #elif defined(OS_MACOSX) |
| 1401 // Let the RenderView know its window has changed visibility. | 1405 // Let the RenderView know its window has changed visibility. |
| 1402 IPC_MESSAGE_ROUTED1(ViewMsg_SetWindowVisibility, | 1406 IPC_MESSAGE_ROUTED1(ViewMsg_SetWindowVisibility, |
| 1403 bool /* visibile */) | 1407 bool /* visibile */) |
| 1404 | 1408 |
| 1405 // Let the RenderView know its window's frame has changed. | 1409 // Let the RenderView know its window's frame has changed. |
| 1406 IPC_MESSAGE_ROUTED2(ViewMsg_WindowFrameChanged, | 1410 IPC_MESSAGE_ROUTED2(ViewMsg_WindowFrameChanged, |
| 1407 gfx::Rect /* window frame */, | 1411 gfx::Rect /* window frame */, |
| 1408 gfx::Rect /* content view frame */) | 1412 gfx::Rect /* content view frame */) |
| 1409 | 1413 |
| (...skipping 966 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 2376 // marker, in similarly normalized coords (or an empty rect if there isn't one). | 2380 // marker, in similarly normalized coords (or an empty rect if there isn't one). |
| 2377 IPC_MESSAGE_ROUTED3(ViewHostMsg_FindMatchRects_Reply, | 2381 IPC_MESSAGE_ROUTED3(ViewHostMsg_FindMatchRects_Reply, |
| 2378 int /* version */, | 2382 int /* version */, |
| 2379 std::vector<gfx::RectF> /* rects */, | 2383 std::vector<gfx::RectF> /* rects */, |
| 2380 gfx::RectF /* active_rect */) | 2384 gfx::RectF /* active_rect */) |
| 2381 | 2385 |
| 2382 // Start an android intent with the given URI. | 2386 // Start an android intent with the given URI. |
| 2383 IPC_MESSAGE_ROUTED1(ViewHostMsg_StartContentIntent, | 2387 IPC_MESSAGE_ROUTED1(ViewHostMsg_StartContentIntent, |
| 2384 GURL /* content_url */) | 2388 GURL /* content_url */) |
| 2385 #endif | 2389 #endif |
| OLD | NEW |