| 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 // 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 Loading... |
| 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_ |
| OLD | NEW |