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

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

Issue 2363993003: Revert of Handling new frames and frame navigations with find-in-page during a find session. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 4 years, 3 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 94 matching lines...) Expand 10 before | Expand all | Expand 10 after
105 IPC_ENUM_TRAITS_MIN_MAX_VALUE(content::LoFiState, 105 IPC_ENUM_TRAITS_MIN_MAX_VALUE(content::LoFiState,
106 content::LOFI_UNSPECIFIED, 106 content::LOFI_UNSPECIFIED,
107 content::LOFI_ON) 107 content::LOFI_ON)
108 IPC_ENUM_TRAITS_MAX_VALUE(content::FileChooserParams::Mode, 108 IPC_ENUM_TRAITS_MAX_VALUE(content::FileChooserParams::Mode,
109 content::FileChooserParams::Save) 109 content::FileChooserParams::Save)
110 110
111 IPC_STRUCT_TRAITS_BEGIN(blink::WebFindOptions) 111 IPC_STRUCT_TRAITS_BEGIN(blink::WebFindOptions)
112 IPC_STRUCT_TRAITS_MEMBER(forward) 112 IPC_STRUCT_TRAITS_MEMBER(forward)
113 IPC_STRUCT_TRAITS_MEMBER(matchCase) 113 IPC_STRUCT_TRAITS_MEMBER(matchCase)
114 IPC_STRUCT_TRAITS_MEMBER(findNext) 114 IPC_STRUCT_TRAITS_MEMBER(findNext)
115 IPC_STRUCT_TRAITS_MEMBER(force)
116 IPC_STRUCT_TRAITS_END() 115 IPC_STRUCT_TRAITS_END()
117 116
118 IPC_STRUCT_TRAITS_BEGIN(content::ColorSuggestion) 117 IPC_STRUCT_TRAITS_BEGIN(content::ColorSuggestion)
119 IPC_STRUCT_TRAITS_MEMBER(color) 118 IPC_STRUCT_TRAITS_MEMBER(color)
120 IPC_STRUCT_TRAITS_MEMBER(label) 119 IPC_STRUCT_TRAITS_MEMBER(label)
121 IPC_STRUCT_TRAITS_END() 120 IPC_STRUCT_TRAITS_END()
122 121
123 IPC_STRUCT_TRAITS_BEGIN(content::ContextMenuParams) 122 IPC_STRUCT_TRAITS_BEGIN(content::ContextMenuParams)
124 IPC_STRUCT_TRAITS_MEMBER(media_type) 123 IPC_STRUCT_TRAITS_MEMBER(media_type)
125 IPC_STRUCT_TRAITS_MEMBER(x) 124 IPC_STRUCT_TRAITS_MEMBER(x)
(...skipping 1443 matching lines...) Expand 10 before | Expand all | Expand 10 after
1569 // nearest find result in the sending frame. 1568 // nearest find result in the sending frame.
1570 IPC_MESSAGE_ROUTED2(FrameHostMsg_GetNearestFindResult_Reply, 1569 IPC_MESSAGE_ROUTED2(FrameHostMsg_GetNearestFindResult_Reply,
1571 int /* nfr_request_id */, 1570 int /* nfr_request_id */,
1572 float /* distance */) 1571 float /* distance */)
1573 #endif 1572 #endif
1574 1573
1575 // Adding a new message? Stick to the sort order above: first platform 1574 // Adding a new message? Stick to the sort order above: first platform
1576 // independent FrameMsg, then ifdefs for platform specific FrameMsg, then 1575 // independent FrameMsg, then ifdefs for platform specific FrameMsg, then
1577 // platform independent FrameHostMsg, then ifdefs for platform specific 1576 // platform independent FrameHostMsg, then ifdefs for platform specific
1578 // FrameHostMsg. 1577 // FrameHostMsg.
OLDNEW
« no previous file with comments | « content/browser/find_request_manager_browsertest.cc ('k') | third_party/WebKit/Source/web/TextFinder.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698