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 56 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
67 class JavaBridgeDispatcher; | 67 class JavaBridgeDispatcher; |
68 class LoadProgressTracker; | 68 class LoadProgressTracker; |
69 class MediaStreamDispatcher; | 69 class MediaStreamDispatcher; |
70 class MediaStreamImpl; | 70 class MediaStreamImpl; |
71 class MouseLockDispatcher; | 71 class MouseLockDispatcher; |
72 class NotificationProvider; | 72 class NotificationProvider; |
73 class PepperDeviceTest; | 73 class PepperDeviceTest; |
74 struct PP_NetAddress_Private; | 74 struct PP_NetAddress_Private; |
75 class RenderWidgetFullscreenPepper; | 75 class RenderWidgetFullscreenPepper; |
76 class RendererAccessibility; | 76 class RendererAccessibility; |
| 77 class RendererWebColorChooserImpl; |
77 class SkBitmap; | 78 class SkBitmap; |
78 class SpeechInputDispatcher; | 79 class SpeechInputDispatcher; |
79 struct ViewMsg_Navigate_Params; | 80 struct ViewMsg_Navigate_Params; |
80 struct ViewMsg_StopFinding_Params; | 81 struct ViewMsg_StopFinding_Params; |
81 struct ViewMsg_SwapOut_Params; | 82 struct ViewMsg_SwapOut_Params; |
82 struct WebDropData; | 83 struct WebDropData; |
83 class WebIntentsHost; | 84 class WebIntentsHost; |
84 class WebPluginDelegateProxy; | 85 class WebPluginDelegateProxy; |
85 class WebUIBindings; | 86 class WebUIBindings; |
86 | 87 |
(...skipping 269 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
356 WebKit::WebFileChooserCompletion* chooser_completion); | 357 WebKit::WebFileChooserCompletion* chooser_completion); |
357 virtual void didStartLoading(); | 358 virtual void didStartLoading(); |
358 virtual void didStopLoading(); | 359 virtual void didStopLoading(); |
359 virtual void didChangeLoadProgress(WebKit::WebFrame* frame, | 360 virtual void didChangeLoadProgress(WebKit::WebFrame* frame, |
360 double load_progress); | 361 double load_progress); |
361 virtual bool isSmartInsertDeleteEnabled(); | 362 virtual bool isSmartInsertDeleteEnabled(); |
362 virtual bool isSelectTrailingWhitespaceEnabled(); | 363 virtual bool isSelectTrailingWhitespaceEnabled(); |
363 virtual void didChangeSelection(bool is_selection_empty); | 364 virtual void didChangeSelection(bool is_selection_empty); |
364 virtual void didExecuteCommand(const WebKit::WebString& command_name); | 365 virtual void didExecuteCommand(const WebKit::WebString& command_name); |
365 virtual bool handleCurrentKeyboardEvent(); | 366 virtual bool handleCurrentKeyboardEvent(); |
| 367 virtual WebKit::WebColorChooser* createColorChooser( |
| 368 WebKit::WebColorChooserClient*, const WebKit::WebColor& initial_color); |
366 virtual bool runFileChooser( | 369 virtual bool runFileChooser( |
367 const WebKit::WebFileChooserParams& params, | 370 const WebKit::WebFileChooserParams& params, |
368 WebKit::WebFileChooserCompletion* chooser_completion); | 371 WebKit::WebFileChooserCompletion* chooser_completion); |
369 virtual void runModalAlertDialog(WebKit::WebFrame* frame, | 372 virtual void runModalAlertDialog(WebKit::WebFrame* frame, |
370 const WebKit::WebString& message); | 373 const WebKit::WebString& message); |
371 virtual bool runModalConfirmDialog(WebKit::WebFrame* frame, | 374 virtual bool runModalConfirmDialog(WebKit::WebFrame* frame, |
372 const WebKit::WebString& message); | 375 const WebKit::WebString& message); |
373 virtual bool runModalPromptDialog(WebKit::WebFrame* frame, | 376 virtual bool runModalPromptDialog(WebKit::WebFrame* frame, |
374 const WebKit::WebString& message, | 377 const WebKit::WebString& message, |
375 const WebKit::WebString& default_value, | 378 const WebKit::WebString& default_value, |
(...skipping 889 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1265 // bunch of stuff, you should probably create a helper class and put your | 1268 // bunch of stuff, you should probably create a helper class and put your |
1266 // data and methods on that to avoid bloating RenderView more. You can | 1269 // data and methods on that to avoid bloating RenderView more. You can |
1267 // use the Observer interface to filter IPC messages and receive frame change | 1270 // use the Observer interface to filter IPC messages and receive frame change |
1268 // notifications. | 1271 // notifications. |
1269 // --------------------------------------------------------------------------- | 1272 // --------------------------------------------------------------------------- |
1270 | 1273 |
1271 DISALLOW_COPY_AND_ASSIGN(RenderViewImpl); | 1274 DISALLOW_COPY_AND_ASSIGN(RenderViewImpl); |
1272 }; | 1275 }; |
1273 | 1276 |
1274 #endif // CONTENT_RENDERER_RENDER_VIEW_IMPL_H_ | 1277 #endif // CONTENT_RENDERER_RENDER_VIEW_IMPL_H_ |
OLD | NEW |