| 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 444 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 455 virtual void initializeHelperPluginWebFrame(blink::WebHelperPlugin*); | 455 virtual void initializeHelperPluginWebFrame(blink::WebHelperPlugin*); |
| 456 virtual void didStartLoading(); | 456 virtual void didStartLoading(); |
| 457 virtual void didStopLoading(); | 457 virtual void didStopLoading(); |
| 458 virtual void didChangeLoadProgress(blink::WebFrame* frame, | 458 virtual void didChangeLoadProgress(blink::WebFrame* frame, |
| 459 double load_progress); | 459 double load_progress); |
| 460 virtual void didCancelCompositionOnSelectionChange(); | 460 virtual void didCancelCompositionOnSelectionChange(); |
| 461 virtual void didChangeSelection(bool is_selection_empty); | 461 virtual void didChangeSelection(bool is_selection_empty); |
| 462 virtual void didExecuteCommand(const blink::WebString& command_name); | 462 virtual void didExecuteCommand(const blink::WebString& command_name); |
| 463 virtual bool handleCurrentKeyboardEvent(); | 463 virtual bool handleCurrentKeyboardEvent(); |
| 464 virtual blink::WebColorChooser* createColorChooser( | 464 virtual blink::WebColorChooser* createColorChooser( |
| 465 blink::WebColorChooserClient*, const blink::WebColor& initial_color); | 465 blink::WebColorChooserClient*, |
| 466 const blink::WebColor& initial_color, |
| 467 const blink::WebVector<blink::WebColorSuggestion>& suggestions); |
| 466 virtual bool runFileChooser( | 468 virtual bool runFileChooser( |
| 467 const blink::WebFileChooserParams& params, | 469 const blink::WebFileChooserParams& params, |
| 468 blink::WebFileChooserCompletion* chooser_completion); | 470 blink::WebFileChooserCompletion* chooser_completion); |
| 469 virtual void runModalAlertDialog(blink::WebFrame* frame, | 471 virtual void runModalAlertDialog(blink::WebFrame* frame, |
| 470 const blink::WebString& message); | 472 const blink::WebString& message); |
| 471 virtual bool runModalConfirmDialog(blink::WebFrame* frame, | 473 virtual bool runModalConfirmDialog(blink::WebFrame* frame, |
| 472 const blink::WebString& message); | 474 const blink::WebString& message); |
| 473 virtual bool runModalPromptDialog(blink::WebFrame* frame, | 475 virtual bool runModalPromptDialog(blink::WebFrame* frame, |
| 474 const blink::WebString& message, | 476 const blink::WebString& message, |
| 475 const blink::WebString& default_value, | 477 const blink::WebString& default_value, |
| (...skipping 1092 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1568 // use the Observer interface to filter IPC messages and receive frame change | 1570 // use the Observer interface to filter IPC messages and receive frame change |
| 1569 // notifications. | 1571 // notifications. |
| 1570 // --------------------------------------------------------------------------- | 1572 // --------------------------------------------------------------------------- |
| 1571 | 1573 |
| 1572 DISALLOW_COPY_AND_ASSIGN(RenderViewImpl); | 1574 DISALLOW_COPY_AND_ASSIGN(RenderViewImpl); |
| 1573 }; | 1575 }; |
| 1574 | 1576 |
| 1575 } // namespace content | 1577 } // namespace content |
| 1576 | 1578 |
| 1577 #endif // CONTENT_RENDERER_RENDER_VIEW_IMPL_H_ | 1579 #endif // CONTENT_RENDERER_RENDER_VIEW_IMPL_H_ |
| OLD | NEW |