| 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 249 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 260 | 260 |
| 261 void LoadNavigationErrorPage( | 261 void LoadNavigationErrorPage( |
| 262 blink::WebFrame* frame, | 262 blink::WebFrame* frame, |
| 263 const blink::WebURLRequest& failed_request, | 263 const blink::WebURLRequest& failed_request, |
| 264 const blink::WebURLError& error, | 264 const blink::WebURLError& error, |
| 265 bool replace); | 265 bool replace); |
| 266 | 266 |
| 267 #if defined(OS_ANDROID) | 267 #if defined(OS_ANDROID) |
| 268 void DismissDateTimeDialog(); | 268 void DismissDateTimeDialog(); |
| 269 #endif | 269 #endif |
| 270 void DidHideExternalPopupMenu(); |
| 270 | 271 |
| 271 // Plugin-related functions -------------------------------------------------- | 272 // Plugin-related functions -------------------------------------------------- |
| 272 | 273 |
| 273 #if defined(ENABLE_PLUGINS) | 274 #if defined(ENABLE_PLUGINS) |
| 274 PepperPluginInstanceImpl* focused_pepper_plugin() { | 275 PepperPluginInstanceImpl* focused_pepper_plugin() { |
| 275 return focused_pepper_plugin_; | 276 return focused_pepper_plugin_; |
| 276 } | 277 } |
| 277 PepperPluginInstanceImpl* pepper_last_mouse_event_target() { | 278 PepperPluginInstanceImpl* pepper_last_mouse_event_target() { |
| 278 return pepper_last_mouse_event_target_; | 279 return pepper_last_mouse_event_target_; |
| 279 } | 280 } |
| (...skipping 1151 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1431 // use the Observer interface to filter IPC messages and receive frame change | 1432 // use the Observer interface to filter IPC messages and receive frame change |
| 1432 // notifications. | 1433 // notifications. |
| 1433 // --------------------------------------------------------------------------- | 1434 // --------------------------------------------------------------------------- |
| 1434 | 1435 |
| 1435 DISALLOW_COPY_AND_ASSIGN(RenderViewImpl); | 1436 DISALLOW_COPY_AND_ASSIGN(RenderViewImpl); |
| 1436 }; | 1437 }; |
| 1437 | 1438 |
| 1438 } // namespace content | 1439 } // namespace content |
| 1439 | 1440 |
| 1440 #endif // CONTENT_RENDERER_RENDER_VIEW_IMPL_H_ | 1441 #endif // CONTENT_RENDERER_RENDER_VIEW_IMPL_H_ |
| OLD | NEW |