| 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 #pragma once | 7 #pragma once |
| 8 | 8 |
| 9 #include <deque> | 9 #include <deque> |
| 10 #include <map> | 10 #include <map> |
| (...skipping 57 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 68 class JavaBridgeDispatcher; | 68 class JavaBridgeDispatcher; |
| 69 class LoadProgressTracker; | 69 class LoadProgressTracker; |
| 70 class MediaStreamDispatcher; | 70 class MediaStreamDispatcher; |
| 71 class MediaStreamImpl; | 71 class MediaStreamImpl; |
| 72 class MouseLockDispatcher; | 72 class MouseLockDispatcher; |
| 73 class NotificationProvider; | 73 class NotificationProvider; |
| 74 class PepperDeviceTest; | 74 class PepperDeviceTest; |
| 75 struct PP_NetAddress_Private; | 75 struct PP_NetAddress_Private; |
| 76 class RenderWidgetFullscreenPepper; | 76 class RenderWidgetFullscreenPepper; |
| 77 class RendererAccessibility; | 77 class RendererAccessibility; |
| 78 class RendererWebColorChooserImpl; |
| 78 class SkBitmap; | 79 class SkBitmap; |
| 79 class InputTagSpeechDispatcher; | 80 class InputTagSpeechDispatcher; |
| 80 struct ViewMsg_Navigate_Params; | 81 struct ViewMsg_Navigate_Params; |
| 81 struct ViewMsg_StopFinding_Params; | 82 struct ViewMsg_StopFinding_Params; |
| 82 struct ViewMsg_SwapOut_Params; | 83 struct ViewMsg_SwapOut_Params; |
| 83 struct WebDropData; | 84 struct WebDropData; |
| 84 class WebIntentsHost; | 85 class WebIntentsHost; |
| 85 class WebPluginDelegateProxy; | 86 class WebPluginDelegateProxy; |
| 86 class WebUIBindings; | 87 class WebUIBindings; |
| 87 | 88 |
| (...skipping 278 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 366 WebKit::WebFileChooserCompletion* chooser_completion); | 367 WebKit::WebFileChooserCompletion* chooser_completion); |
| 367 virtual void didStartLoading(); | 368 virtual void didStartLoading(); |
| 368 virtual void didStopLoading(); | 369 virtual void didStopLoading(); |
| 369 virtual void didChangeLoadProgress(WebKit::WebFrame* frame, | 370 virtual void didChangeLoadProgress(WebKit::WebFrame* frame, |
| 370 double load_progress); | 371 double load_progress); |
| 371 virtual bool isSmartInsertDeleteEnabled(); | 372 virtual bool isSmartInsertDeleteEnabled(); |
| 372 virtual bool isSelectTrailingWhitespaceEnabled(); | 373 virtual bool isSelectTrailingWhitespaceEnabled(); |
| 373 virtual void didChangeSelection(bool is_selection_empty); | 374 virtual void didChangeSelection(bool is_selection_empty); |
| 374 virtual void didExecuteCommand(const WebKit::WebString& command_name); | 375 virtual void didExecuteCommand(const WebKit::WebString& command_name); |
| 375 virtual bool handleCurrentKeyboardEvent(); | 376 virtual bool handleCurrentKeyboardEvent(); |
| 377 virtual WebKit::WebColorChooser* createColorChooser( |
| 378 WebKit::WebColorChooserClient*, const WebKit::WebColor& initial_color); |
| 376 virtual bool runFileChooser( | 379 virtual bool runFileChooser( |
| 377 const WebKit::WebFileChooserParams& params, | 380 const WebKit::WebFileChooserParams& params, |
| 378 WebKit::WebFileChooserCompletion* chooser_completion); | 381 WebKit::WebFileChooserCompletion* chooser_completion); |
| 379 virtual void runModalAlertDialog(WebKit::WebFrame* frame, | 382 virtual void runModalAlertDialog(WebKit::WebFrame* frame, |
| 380 const WebKit::WebString& message); | 383 const WebKit::WebString& message); |
| 381 virtual bool runModalConfirmDialog(WebKit::WebFrame* frame, | 384 virtual bool runModalConfirmDialog(WebKit::WebFrame* frame, |
| 382 const WebKit::WebString& message); | 385 const WebKit::WebString& message); |
| 383 virtual bool runModalPromptDialog(WebKit::WebFrame* frame, | 386 virtual bool runModalPromptDialog(WebKit::WebFrame* frame, |
| 384 const WebKit::WebString& message, | 387 const WebKit::WebString& message, |
| 385 const WebKit::WebString& default_value, | 388 const WebKit::WebString& default_value, |
| (...skipping 925 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1311 // bunch of stuff, you should probably create a helper class and put your | 1314 // bunch of stuff, you should probably create a helper class and put your |
| 1312 // data and methods on that to avoid bloating RenderView more. You can | 1315 // data and methods on that to avoid bloating RenderView more. You can |
| 1313 // use the Observer interface to filter IPC messages and receive frame change | 1316 // use the Observer interface to filter IPC messages and receive frame change |
| 1314 // notifications. | 1317 // notifications. |
| 1315 // --------------------------------------------------------------------------- | 1318 // --------------------------------------------------------------------------- |
| 1316 | 1319 |
| 1317 DISALLOW_COPY_AND_ASSIGN(RenderViewImpl); | 1320 DISALLOW_COPY_AND_ASSIGN(RenderViewImpl); |
| 1318 }; | 1321 }; |
| 1319 | 1322 |
| 1320 #endif // CONTENT_RENDERER_RENDER_VIEW_IMPL_H_ | 1323 #endif // CONTENT_RENDERER_RENDER_VIEW_IMPL_H_ |
| OLD | NEW |