| 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(blink::WebHelperPlugin*); | 448 virtual void initializeHelperPluginWebFrame(blink::WebHelperPlugin*); |
| 449 virtual void didStartLoading(); | 449 virtual void didStartLoading(); |
| 450 virtual void didStopLoading(); | 450 virtual void didStopLoading(); |
| 451 virtual void didChangeLoadProgress(blink::WebFrame* frame, | 451 virtual void didChangeLoadProgress(blink::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 blink::WebString& command_name); | 455 virtual void didExecuteCommand(const blink::WebString& command_name); |
| 456 virtual bool handleCurrentKeyboardEvent(); | 456 virtual bool handleCurrentKeyboardEvent(); |
| 457 virtual blink::WebColorChooser* createColorChooser( | 457 virtual blink::WebColorChooser* createColorChooser( |
| 458 blink::WebColorChooserClient*, const blink::WebColor& initial_color); | 458 blink::WebColorChooserClient*, |
| 459 const blink::WebColor& initial_color, |
| 460 const blink::WebVector<blink::WebColorSuggestion>& suggestions); |
| 459 virtual bool runFileChooser( | 461 virtual bool runFileChooser( |
| 460 const blink::WebFileChooserParams& params, | 462 const blink::WebFileChooserParams& params, |
| 461 blink::WebFileChooserCompletion* chooser_completion); | 463 blink::WebFileChooserCompletion* chooser_completion); |
| 462 virtual void runModalAlertDialog(blink::WebFrame* frame, | 464 virtual void runModalAlertDialog(blink::WebFrame* frame, |
| 463 const blink::WebString& message); | 465 const blink::WebString& message); |
| 464 virtual bool runModalConfirmDialog(blink::WebFrame* frame, | 466 virtual bool runModalConfirmDialog(blink::WebFrame* frame, |
| 465 const blink::WebString& message); | 467 const blink::WebString& message); |
| 466 virtual bool runModalPromptDialog(blink::WebFrame* frame, | 468 virtual bool runModalPromptDialog(blink::WebFrame* frame, |
| 467 const blink::WebString& message, | 469 const blink::WebString& message, |
| 468 const blink::WebString& default_value, | 470 const blink::WebString& default_value, |
| (...skipping 1094 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1563 // use the Observer interface to filter IPC messages and receive frame change | 1565 // use the Observer interface to filter IPC messages and receive frame change |
| 1564 // notifications. | 1566 // notifications. |
| 1565 // --------------------------------------------------------------------------- | 1567 // --------------------------------------------------------------------------- |
| 1566 | 1568 |
| 1567 DISALLOW_COPY_AND_ASSIGN(RenderViewImpl); | 1569 DISALLOW_COPY_AND_ASSIGN(RenderViewImpl); |
| 1568 }; | 1570 }; |
| 1569 | 1571 |
| 1570 } // namespace content | 1572 } // namespace content |
| 1571 | 1573 |
| 1572 #endif // CONTENT_RENDERER_RENDER_VIEW_IMPL_H_ | 1574 #endif // CONTENT_RENDERER_RENDER_VIEW_IMPL_H_ |
| OLD | NEW |