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 SpeechInputDispatcher; | 80 class SpeechInputDispatcher; |
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 272 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
360 WebKit::WebFileChooserCompletion* chooser_completion); | 361 WebKit::WebFileChooserCompletion* chooser_completion); |
361 virtual void didStartLoading(); | 362 virtual void didStartLoading(); |
362 virtual void didStopLoading(); | 363 virtual void didStopLoading(); |
363 virtual void didChangeLoadProgress(WebKit::WebFrame* frame, | 364 virtual void didChangeLoadProgress(WebKit::WebFrame* frame, |
364 double load_progress); | 365 double load_progress); |
365 virtual bool isSmartInsertDeleteEnabled(); | 366 virtual bool isSmartInsertDeleteEnabled(); |
366 virtual bool isSelectTrailingWhitespaceEnabled(); | 367 virtual bool isSelectTrailingWhitespaceEnabled(); |
367 virtual void didChangeSelection(bool is_selection_empty); | 368 virtual void didChangeSelection(bool is_selection_empty); |
368 virtual void didExecuteCommand(const WebKit::WebString& command_name); | 369 virtual void didExecuteCommand(const WebKit::WebString& command_name); |
369 virtual bool handleCurrentKeyboardEvent(); | 370 virtual bool handleCurrentKeyboardEvent(); |
| 371 virtual WebKit::WebColorChooser* createColorChooser( |
| 372 WebKit::WebColorChooserClient*, const WebKit::WebColor& initial_color); |
370 virtual bool runFileChooser( | 373 virtual bool runFileChooser( |
371 const WebKit::WebFileChooserParams& params, | 374 const WebKit::WebFileChooserParams& params, |
372 WebKit::WebFileChooserCompletion* chooser_completion); | 375 WebKit::WebFileChooserCompletion* chooser_completion); |
373 virtual void runModalAlertDialog(WebKit::WebFrame* frame, | 376 virtual void runModalAlertDialog(WebKit::WebFrame* frame, |
374 const WebKit::WebString& message); | 377 const WebKit::WebString& message); |
375 virtual bool runModalConfirmDialog(WebKit::WebFrame* frame, | 378 virtual bool runModalConfirmDialog(WebKit::WebFrame* frame, |
376 const WebKit::WebString& message); | 379 const WebKit::WebString& message); |
377 virtual bool runModalPromptDialog(WebKit::WebFrame* frame, | 380 virtual bool runModalPromptDialog(WebKit::WebFrame* frame, |
378 const WebKit::WebString& message, | 381 const WebKit::WebString& message, |
379 const WebKit::WebString& default_value, | 382 const WebKit::WebString& default_value, |
(...skipping 898 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1278 // bunch of stuff, you should probably create a helper class and put your | 1281 // bunch of stuff, you should probably create a helper class and put your |
1279 // data and methods on that to avoid bloating RenderView more. You can | 1282 // data and methods on that to avoid bloating RenderView more. You can |
1280 // use the Observer interface to filter IPC messages and receive frame change | 1283 // use the Observer interface to filter IPC messages and receive frame change |
1281 // notifications. | 1284 // notifications. |
1282 // --------------------------------------------------------------------------- | 1285 // --------------------------------------------------------------------------- |
1283 | 1286 |
1284 DISALLOW_COPY_AND_ASSIGN(RenderViewImpl); | 1287 DISALLOW_COPY_AND_ASSIGN(RenderViewImpl); |
1285 }; | 1288 }; |
1286 | 1289 |
1287 #endif // CONTENT_RENDERER_RENDER_VIEW_IMPL_H_ | 1290 #endif // CONTENT_RENDERER_RENDER_VIEW_IMPL_H_ |
OLD | NEW |