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 #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 Loading... |
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 PepperPluginInstanceImpl* focused_pepper_plugin() { | 278 PepperPluginInstanceImpl* focused_pepper_plugin() { |
278 return focused_pepper_plugin_; | 279 return focused_pepper_plugin_; |
279 } | 280 } |
280 PepperPluginInstanceImpl* pepper_last_mouse_event_target() { | 281 PepperPluginInstanceImpl* pepper_last_mouse_event_target() { |
281 return pepper_last_mouse_event_target_; | 282 return pepper_last_mouse_event_target_; |
282 } | 283 } |
(...skipping 1157 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1440 // use the Observer interface to filter IPC messages and receive frame change | 1441 // use the Observer interface to filter IPC messages and receive frame change |
1441 // notifications. | 1442 // notifications. |
1442 // --------------------------------------------------------------------------- | 1443 // --------------------------------------------------------------------------- |
1443 | 1444 |
1444 DISALLOW_COPY_AND_ASSIGN(RenderViewImpl); | 1445 DISALLOW_COPY_AND_ASSIGN(RenderViewImpl); |
1445 }; | 1446 }; |
1446 | 1447 |
1447 } // namespace content | 1448 } // namespace content |
1448 | 1449 |
1449 #endif // CONTENT_RENDERER_RENDER_VIEW_IMPL_H_ | 1450 #endif // CONTENT_RENDERER_RENDER_VIEW_IMPL_H_ |
OLD | NEW |