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

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

Issue 2745653011: Fix the browser not being notified when a webview embedder handles a navigation. (Closed)
Patch Set: without PlzNavigate Created 3 years, 9 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
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 1593 matching lines...) Expand 10 before | Expand all | Expand 10 after
1604 IPC_MESSAGE_ROUTED3(FrameHostMsg_FindMatchRects_Reply, 1604 IPC_MESSAGE_ROUTED3(FrameHostMsg_FindMatchRects_Reply,
1605 int /* version */, 1605 int /* version */,
1606 std::vector<gfx::RectF> /* rects */, 1606 std::vector<gfx::RectF> /* rects */,
1607 gfx::RectF /* active_rect */) 1607 gfx::RectF /* active_rect */)
1608 1608
1609 // Response to FrameMsg_GetNearestFindResult. |distance| is the distance to the 1609 // Response to FrameMsg_GetNearestFindResult. |distance| is the distance to the
1610 // nearest find result in the sending frame. 1610 // nearest find result in the sending frame.
1611 IPC_MESSAGE_ROUTED2(FrameHostMsg_GetNearestFindResult_Reply, 1611 IPC_MESSAGE_ROUTED2(FrameHostMsg_GetNearestFindResult_Reply,
1612 int /* nfr_request_id */, 1612 int /* nfr_request_id */,
1613 float /* distance */) 1613 float /* distance */)
1614
1615 IPC_MESSAGE_ROUTED0(FrameHostMsg_NavigationHandledByEmbedder)
1614 #endif 1616 #endif
1615 1617
1616 // Adding a new message? Stick to the sort order above: first platform 1618 // Adding a new message? Stick to the sort order above: first platform
1617 // independent FrameMsg, then ifdefs for platform specific FrameMsg, then 1619 // independent FrameMsg, then ifdefs for platform specific FrameMsg, then
1618 // platform independent FrameHostMsg, then ifdefs for platform specific 1620 // platform independent FrameHostMsg, then ifdefs for platform specific
1619 // FrameHostMsg. 1621 // FrameHostMsg.
OLDNEW
« no previous file with comments | « content/browser/frame_host/render_frame_host_impl.cc ('k') | content/renderer/render_frame_impl.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698