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 437 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
448 virtual void initializeHelperPluginWebFrame(WebKit::WebHelperPlugin*); | 448 virtual void initializeHelperPluginWebFrame(WebKit::WebHelperPlugin*); |
449 virtual void didStartLoading(); | 449 virtual void didStartLoading(); |
450 virtual void didStopLoading(); | 450 virtual void didStopLoading(); |
451 virtual void didChangeLoadProgress(WebKit::WebFrame* frame, | 451 virtual void didChangeLoadProgress(WebKit::WebFrame* frame, |
452 double load_progress); | 452 double load_progress); |
453 virtual void didCancelCompositionOnSelectionChange(); | 453 virtual void didCancelCompositionOnSelectionChange(); |
454 virtual void didChangeSelection(bool is_selection_empty); | 454 virtual void didChangeSelection(bool is_selection_empty); |
455 virtual void didExecuteCommand(const WebKit::WebString& command_name); | 455 virtual void didExecuteCommand(const WebKit::WebString& command_name); |
456 virtual bool handleCurrentKeyboardEvent(); | 456 virtual bool handleCurrentKeyboardEvent(); |
457 virtual WebKit::WebColorChooser* createColorChooser( | 457 virtual WebKit::WebColorChooser* createColorChooser( |
458 WebKit::WebColorChooserClient*, const WebKit::WebColor& initial_color); | 458 WebKit::WebColorChooserClient*, |
| 459 const WebKit::WebColor& initial_color, |
| 460 const WebKit::WebVector<WebKit::WebColorSuggestion>& suggestions); |
459 virtual bool runFileChooser( | 461 virtual bool runFileChooser( |
460 const WebKit::WebFileChooserParams& params, | 462 const WebKit::WebFileChooserParams& params, |
461 WebKit::WebFileChooserCompletion* chooser_completion); | 463 WebKit::WebFileChooserCompletion* chooser_completion); |
462 virtual void runModalAlertDialog(WebKit::WebFrame* frame, | 464 virtual void runModalAlertDialog(WebKit::WebFrame* frame, |
463 const WebKit::WebString& message); | 465 const WebKit::WebString& message); |
464 virtual bool runModalConfirmDialog(WebKit::WebFrame* frame, | 466 virtual bool runModalConfirmDialog(WebKit::WebFrame* frame, |
465 const WebKit::WebString& message); | 467 const WebKit::WebString& message); |
466 virtual bool runModalPromptDialog(WebKit::WebFrame* frame, | 468 virtual bool runModalPromptDialog(WebKit::WebFrame* frame, |
467 const WebKit::WebString& message, | 469 const WebKit::WebString& message, |
468 const WebKit::WebString& default_value, | 470 const WebKit::WebString& default_value, |
(...skipping 1060 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1529 // use the Observer interface to filter IPC messages and receive frame change | 1531 // use the Observer interface to filter IPC messages and receive frame change |
1530 // notifications. | 1532 // notifications. |
1531 // --------------------------------------------------------------------------- | 1533 // --------------------------------------------------------------------------- |
1532 | 1534 |
1533 DISALLOW_COPY_AND_ASSIGN(RenderViewImpl); | 1535 DISALLOW_COPY_AND_ASSIGN(RenderViewImpl); |
1534 }; | 1536 }; |
1535 | 1537 |
1536 } // namespace content | 1538 } // namespace content |
1537 | 1539 |
1538 #endif // CONTENT_RENDERER_RENDER_VIEW_IMPL_H_ | 1540 #endif // CONTENT_RENDERER_RENDER_VIEW_IMPL_H_ |
OLD | NEW |