| 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 402 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 413 const blink::WebConsoleMessage& message, | 413 const blink::WebConsoleMessage& message, |
| 414 const blink::WebString& source_name, | 414 const blink::WebString& source_name, |
| 415 unsigned source_line, | 415 unsigned source_line, |
| 416 const blink::WebString& stack_trace); | 416 const blink::WebString& stack_trace); |
| 417 virtual void printPage(blink::WebFrame* frame); | 417 virtual void printPage(blink::WebFrame* frame); |
| 418 virtual blink::WebNotificationPresenter* notificationPresenter(); | 418 virtual blink::WebNotificationPresenter* notificationPresenter(); |
| 419 virtual bool enumerateChosenDirectory( | 419 virtual bool enumerateChosenDirectory( |
| 420 const blink::WebString& path, | 420 const blink::WebString& path, |
| 421 blink::WebFileChooserCompletion* chooser_completion); | 421 blink::WebFileChooserCompletion* chooser_completion); |
| 422 virtual void initializeHelperPluginWebFrame(blink::WebHelperPlugin*); | 422 virtual void initializeHelperPluginWebFrame(blink::WebHelperPlugin*); |
| 423 virtual void didStartLoading(bool to_different_document); |
| 424 // DEPRECATED |
| 423 virtual void didStartLoading(); | 425 virtual void didStartLoading(); |
| 424 virtual void didStopLoading(); | 426 virtual void didStopLoading(); |
| 425 virtual void didChangeLoadProgress(blink::WebFrame* frame, | 427 virtual void didChangeLoadProgress(blink::WebFrame* frame, |
| 426 double load_progress); | 428 double load_progress); |
| 427 virtual void didCancelCompositionOnSelectionChange(); | 429 virtual void didCancelCompositionOnSelectionChange(); |
| 428 virtual void didChangeSelection(bool is_selection_empty); | 430 virtual void didChangeSelection(bool is_selection_empty); |
| 429 virtual void didExecuteCommand(const blink::WebString& command_name); | 431 virtual void didExecuteCommand(const blink::WebString& command_name); |
| 430 virtual bool handleCurrentKeyboardEvent(); | 432 virtual bool handleCurrentKeyboardEvent(); |
| 431 virtual blink::WebColorChooser* createColorChooser( | 433 virtual blink::WebColorChooser* createColorChooser( |
| 432 blink::WebColorChooserClient*, | 434 blink::WebColorChooserClient*, |
| (...skipping 1085 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1518 // use the Observer interface to filter IPC messages and receive frame change | 1520 // use the Observer interface to filter IPC messages and receive frame change |
| 1519 // notifications. | 1521 // notifications. |
| 1520 // --------------------------------------------------------------------------- | 1522 // --------------------------------------------------------------------------- |
| 1521 | 1523 |
| 1522 DISALLOW_COPY_AND_ASSIGN(RenderViewImpl); | 1524 DISALLOW_COPY_AND_ASSIGN(RenderViewImpl); |
| 1523 }; | 1525 }; |
| 1524 | 1526 |
| 1525 } // namespace content | 1527 } // namespace content |
| 1526 | 1528 |
| 1527 #endif // CONTENT_RENDERER_RENDER_VIEW_IMPL_H_ | 1529 #endif // CONTENT_RENDERER_RENDER_VIEW_IMPL_H_ |
| OLD | NEW |