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

Side by Side Diff: content/common/frame_messages.h

Issue 2667283007: Refactor Samsung SmartClip implementation. (Closed)
Patch Set: Created 3 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
« no previous file with comments | « content/browser/web_contents/web_contents_android.cc ('k') | content/common/view_messages.h » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 // Copyright 2013 The Chromium Authors. All rights reserved. 1 // Copyright 2013 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 interacting with frames. 5 // IPC messages for interacting with frames.
6 // Multiply-included message file, hence no include guard. 6 // Multiply-included message file, hence no include guard.
7 7
8 #include <stddef.h> 8 #include <stddef.h>
9 #include <stdint.h> 9 #include <stdint.h>
10 10
(...skipping 1423 matching lines...) Expand 10 before | Expand all | Expand 10 after
1434 // PlzNavigate 1434 // PlzNavigate
1435 // Tells the browser to perform a navigation. 1435 // Tells the browser to perform a navigation.
1436 IPC_MESSAGE_ROUTED2(FrameHostMsg_BeginNavigation, 1436 IPC_MESSAGE_ROUTED2(FrameHostMsg_BeginNavigation,
1437 content::CommonNavigationParams, 1437 content::CommonNavigationParams,
1438 content::BeginNavigationParams) 1438 content::BeginNavigationParams)
1439 1439
1440 // Sent as a response to FrameMsg_VisualStateRequest. 1440 // Sent as a response to FrameMsg_VisualStateRequest.
1441 // The message is delivered using RenderWidget::QueueMessage. 1441 // The message is delivered using RenderWidget::QueueMessage.
1442 IPC_MESSAGE_ROUTED1(FrameHostMsg_VisualStateResponse, uint64_t /* id */) 1442 IPC_MESSAGE_ROUTED1(FrameHostMsg_VisualStateResponse, uint64_t /* id */)
1443 1443
1444 // Extracts the data at the given rect, returning it through the
Tom Sepez 2017/02/04 03:22:44 This one belongs in the prior section, above the d
aelias_OOO_until_Jul13 2017/02/04 03:26:53 Done.
1445 // SmartClipDataExtracted IPC.
1446 IPC_MESSAGE_ROUTED2(FrameMsg_ExtractSmartClipData,
1447 int /* id */,
1448 gfx::Rect /* rect */)
1449
1450 // Reply to the ExtractSmartClipData message.
1451 IPC_MESSAGE_ROUTED3(FrameHostMsg_SmartClipDataExtracted,
1452 int /* id */,
1453 base::string16 /* text */,
1454 base::string16 /* html */)
1455
1444 // Puts the browser into "tab fullscreen" mode for the sending renderer. 1456 // Puts the browser into "tab fullscreen" mode for the sending renderer.
1445 // See the comment in chrome/browser/ui/browser.h for more details. 1457 // See the comment in chrome/browser/ui/browser.h for more details.
1446 IPC_MESSAGE_ROUTED1(FrameHostMsg_ToggleFullscreen, bool /* enter_fullscreen */) 1458 IPC_MESSAGE_ROUTED1(FrameHostMsg_ToggleFullscreen, bool /* enter_fullscreen */)
1447 1459
1448 // Dispatch a load event for this frame in the iframe element of an 1460 // Dispatch a load event for this frame in the iframe element of an
1449 // out-of-process parent frame. 1461 // out-of-process parent frame.
1450 IPC_MESSAGE_ROUTED0(FrameHostMsg_DispatchLoad) 1462 IPC_MESSAGE_ROUTED0(FrameHostMsg_DispatchLoad)
1451 1463
1452 // Sent to the browser from a frame proxy to post a message to the frame's 1464 // Sent to the browser from a frame proxy to post a message to the frame's
1453 // active renderer. 1465 // active renderer.
(...skipping 109 matching lines...) Expand 10 before | Expand all | Expand 10 after
1563 // nearest find result in the sending frame. 1575 // nearest find result in the sending frame.
1564 IPC_MESSAGE_ROUTED2(FrameHostMsg_GetNearestFindResult_Reply, 1576 IPC_MESSAGE_ROUTED2(FrameHostMsg_GetNearestFindResult_Reply,
1565 int /* nfr_request_id */, 1577 int /* nfr_request_id */,
1566 float /* distance */) 1578 float /* distance */)
1567 #endif 1579 #endif
1568 1580
1569 // Adding a new message? Stick to the sort order above: first platform 1581 // Adding a new message? Stick to the sort order above: first platform
1570 // independent FrameMsg, then ifdefs for platform specific FrameMsg, then 1582 // independent FrameMsg, then ifdefs for platform specific FrameMsg, then
1571 // platform independent FrameHostMsg, then ifdefs for platform specific 1583 // platform independent FrameHostMsg, then ifdefs for platform specific
1572 // FrameHostMsg. 1584 // FrameHostMsg.
OLDNEW
« no previous file with comments | « content/browser/web_contents/web_contents_android.cc ('k') | content/common/view_messages.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698