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

Side by Side Diff: content/renderer/render_view_impl.h

Issue 197533008: Mac: ExternalPopupMenu::close should hide a showing popup menu. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: test fix Created 6 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 | Annotate | Revision Log
« no previous file with comments | « content/renderer/external_popup_menu.cc ('k') | content/renderer/render_view_impl.cc » ('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 (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 #ifndef CONTENT_RENDERER_RENDER_VIEW_IMPL_H_ 5 #ifndef CONTENT_RENDERER_RENDER_VIEW_IMPL_H_
6 #define CONTENT_RENDERER_RENDER_VIEW_IMPL_H_ 6 #define CONTENT_RENDERER_RENDER_VIEW_IMPL_H_
7 7
8 #include <deque> 8 #include <deque>
9 #include <map> 9 #include <map>
10 #include <set> 10 #include <set>
(...skipping 252 matching lines...) Expand 10 before | Expand all | Expand 10 after
263 263
264 void LoadNavigationErrorPage( 264 void LoadNavigationErrorPage(
265 blink::WebFrame* frame, 265 blink::WebFrame* frame,
266 const blink::WebURLRequest& failed_request, 266 const blink::WebURLRequest& failed_request,
267 const blink::WebURLError& error, 267 const blink::WebURLError& error,
268 bool replace); 268 bool replace);
269 269
270 #if defined(OS_ANDROID) 270 #if defined(OS_ANDROID)
271 void DismissDateTimeDialog(); 271 void DismissDateTimeDialog();
272 #endif 272 #endif
273 void DidHideExternalPopupMenu();
273 274
274 // Plugin-related functions -------------------------------------------------- 275 // Plugin-related functions --------------------------------------------------
275 276
276 #if defined(ENABLE_PLUGINS) 277 #if defined(ENABLE_PLUGINS)
277 // Get/set the plugin which will be used as to handle document find requests. 278 // Get/set the plugin which will be used as to handle document find requests.
278 void set_plugin_find_handler(PepperPluginInstanceImpl* plugin) { 279 void set_plugin_find_handler(PepperPluginInstanceImpl* plugin) {
279 plugin_find_handler_ = plugin; 280 plugin_find_handler_ = plugin;
280 } 281 }
281 PepperPluginInstanceImpl* plugin_find_handler() { 282 PepperPluginInstanceImpl* plugin_find_handler() {
282 return plugin_find_handler_; 283 return plugin_find_handler_;
(...skipping 1168 matching lines...) Expand 10 before | Expand all | Expand 10 after
1451 // use the Observer interface to filter IPC messages and receive frame change 1452 // use the Observer interface to filter IPC messages and receive frame change
1452 // notifications. 1453 // notifications.
1453 // --------------------------------------------------------------------------- 1454 // ---------------------------------------------------------------------------
1454 1455
1455 DISALLOW_COPY_AND_ASSIGN(RenderViewImpl); 1456 DISALLOW_COPY_AND_ASSIGN(RenderViewImpl);
1456 }; 1457 };
1457 1458
1458 } // namespace content 1459 } // namespace content
1459 1460
1460 #endif // CONTENT_RENDERER_RENDER_VIEW_IMPL_H_ 1461 #endif // CONTENT_RENDERER_RENDER_VIEW_IMPL_H_
OLDNEW
« no previous file with comments | « content/renderer/external_popup_menu.cc ('k') | content/renderer/render_view_impl.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698