| 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 21 matching lines...) Expand all Loading... |
| 32 #include "content/public/common/page_zoom.h" | 32 #include "content/public/common/page_zoom.h" |
| 33 #include "content/public/common/referrer.h" | 33 #include "content/public/common/referrer.h" |
| 34 #include "content/public/common/renderer_preferences.h" | 34 #include "content/public/common/renderer_preferences.h" |
| 35 #include "content/public/common/stop_find_action.h" | 35 #include "content/public/common/stop_find_action.h" |
| 36 #include "content/public/common/top_controls_state.h" | 36 #include "content/public/common/top_controls_state.h" |
| 37 #include "content/public/renderer/render_view.h" | 37 #include "content/public/renderer/render_view.h" |
| 38 #include "content/renderer/media/webmediaplayer_delegate.h" | 38 #include "content/renderer/media/webmediaplayer_delegate.h" |
| 39 #include "content/renderer/mouse_lock_dispatcher.h" | 39 #include "content/renderer/mouse_lock_dispatcher.h" |
| 40 #include "content/renderer/render_frame_impl.h" | 40 #include "content/renderer/render_frame_impl.h" |
| 41 #include "content/renderer/render_widget.h" | 41 #include "content/renderer/render_widget.h" |
| 42 #include "content/renderer/renderer_date_time_picker.h" |
| 42 #include "content/renderer/renderer_webcookiejar_impl.h" | 43 #include "content/renderer/renderer_webcookiejar_impl.h" |
| 43 #include "content/renderer/stats_collection_observer.h" | 44 #include "content/renderer/stats_collection_observer.h" |
| 44 #include "ipc/ipc_platform_file.h" | 45 #include "ipc/ipc_platform_file.h" |
| 45 #include "third_party/WebKit/public/platform/WebGraphicsContext3D.h" | 46 #include "third_party/WebKit/public/platform/WebGraphicsContext3D.h" |
| 46 #include "third_party/WebKit/public/web/WebAXObject.h" | 47 #include "third_party/WebKit/public/web/WebAXObject.h" |
| 47 #include "third_party/WebKit/public/web/WebConsoleMessage.h" | 48 #include "third_party/WebKit/public/web/WebConsoleMessage.h" |
| 48 #include "third_party/WebKit/public/web/WebDataSource.h" | 49 #include "third_party/WebKit/public/web/WebDataSource.h" |
| 49 #include "third_party/WebKit/public/web/WebFrameClient.h" | 50 #include "third_party/WebKit/public/web/WebFrameClient.h" |
| 50 #include "third_party/WebKit/public/web/WebHistoryItem.h" | 51 #include "third_party/WebKit/public/web/WebHistoryItem.h" |
| 51 #include "third_party/WebKit/public/web/WebIconURL.h" | 52 #include "third_party/WebKit/public/web/WebIconURL.h" |
| (...skipping 213 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 265 bool ScheduleFileChooser(const FileChooserParams& params, | 266 bool ScheduleFileChooser(const FileChooserParams& params, |
| 266 blink::WebFileChooserCompletion* completion); | 267 blink::WebFileChooserCompletion* completion); |
| 267 | 268 |
| 268 void LoadNavigationErrorPage( | 269 void LoadNavigationErrorPage( |
| 269 blink::WebFrame* frame, | 270 blink::WebFrame* frame, |
| 270 const blink::WebURLRequest& failed_request, | 271 const blink::WebURLRequest& failed_request, |
| 271 const blink::WebURLError& error, | 272 const blink::WebURLError& error, |
| 272 const std::string& html, | 273 const std::string& html, |
| 273 bool replace); | 274 bool replace); |
| 274 | 275 |
| 276 #if defined(OS_ANDROID) |
| 277 void DismissDateTimeDialog(); |
| 278 #endif |
| 279 |
| 275 // Plugin-related functions -------------------------------------------------- | 280 // Plugin-related functions -------------------------------------------------- |
| 276 | 281 |
| 277 #if defined(ENABLE_PLUGINS) | 282 #if defined(ENABLE_PLUGINS) |
| 278 // Notification that a PPAPI plugin has been created. | 283 // Notification that a PPAPI plugin has been created. |
| 279 void PepperPluginCreated(RendererPpapiHost* host); | 284 void PepperPluginCreated(RendererPpapiHost* host); |
| 280 | 285 |
| 281 #if defined(OS_MACOSX) || defined(OS_WIN) | 286 #if defined(OS_MACOSX) || defined(OS_WIN) |
| 282 // Informs the render view that the given plugin has gained or lost focus. | 287 // Informs the render view that the given plugin has gained or lost focus. |
| 283 void PluginFocusChanged(bool focused, int plugin_id); | 288 void PluginFocusChanged(bool focused, int plugin_id); |
| 284 #endif | 289 #endif |
| (...skipping 1218 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1503 // use the Observer interface to filter IPC messages and receive frame change | 1508 // use the Observer interface to filter IPC messages and receive frame change |
| 1504 // notifications. | 1509 // notifications. |
| 1505 // --------------------------------------------------------------------------- | 1510 // --------------------------------------------------------------------------- |
| 1506 | 1511 |
| 1507 DISALLOW_COPY_AND_ASSIGN(RenderViewImpl); | 1512 DISALLOW_COPY_AND_ASSIGN(RenderViewImpl); |
| 1508 }; | 1513 }; |
| 1509 | 1514 |
| 1510 } // namespace content | 1515 } // namespace content |
| 1511 | 1516 |
| 1512 #endif // CONTENT_RENDERER_RENDER_VIEW_IMPL_H_ | 1517 #endif // CONTENT_RENDERER_RENDER_VIEW_IMPL_H_ |
| OLD | NEW |