| 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::WebString& source_name, | 413 const blink::WebString& source_name, |
| 414 unsigned source_line, | 414 unsigned source_line, |
| 415 const blink::WebString& stack_trace); | 415 const blink::WebString& stack_trace); |
| 416 virtual void printPage(blink::WebFrame* frame); | 416 virtual void printPage(blink::WebFrame* frame); |
| 417 virtual blink::WebNotificationPresenter* notificationPresenter(); | 417 virtual blink::WebNotificationPresenter* notificationPresenter(); |
| 418 virtual bool enumerateChosenDirectory( | 418 virtual bool enumerateChosenDirectory( |
| 419 const blink::WebString& path, | 419 const blink::WebString& path, |
| 420 blink::WebFileChooserCompletion* chooser_completion); | 420 blink::WebFileChooserCompletion* chooser_completion); |
| 421 virtual void initializeHelperPluginWebFrame(blink::WebHelperPlugin*); | 421 virtual void initializeHelperPluginWebFrame(blink::WebHelperPlugin*); |
| 422 virtual void didStartLoading(bool to_different_document); | 422 virtual void didStartLoading(bool to_different_document); |
| 423 // DEPRECATED | |
| 424 virtual void didStartLoading(); | |
| 425 virtual void didStopLoading(); | 423 virtual void didStopLoading(); |
| 426 virtual void didChangeLoadProgress(blink::WebFrame* frame, | 424 virtual void didChangeLoadProgress(blink::WebFrame* frame, |
| 427 double load_progress); | 425 double load_progress); |
| 428 virtual void didCancelCompositionOnSelectionChange(); | 426 virtual void didCancelCompositionOnSelectionChange(); |
| 429 virtual void didChangeSelection(bool is_selection_empty); | 427 virtual void didChangeSelection(bool is_selection_empty); |
| 430 virtual void didExecuteCommand(const blink::WebString& command_name); | 428 virtual void didExecuteCommand(const blink::WebString& command_name); |
| 431 virtual bool handleCurrentKeyboardEvent(); | 429 virtual bool handleCurrentKeyboardEvent(); |
| 432 virtual blink::WebColorChooser* createColorChooser( | 430 virtual blink::WebColorChooser* createColorChooser( |
| 433 blink::WebColorChooserClient*, | 431 blink::WebColorChooserClient*, |
| 434 const blink::WebColor& initial_color, | 432 const blink::WebColor& initial_color, |
| (...skipping 1027 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1462 // use the Observer interface to filter IPC messages and receive frame change | 1460 // use the Observer interface to filter IPC messages and receive frame change |
| 1463 // notifications. | 1461 // notifications. |
| 1464 // --------------------------------------------------------------------------- | 1462 // --------------------------------------------------------------------------- |
| 1465 | 1463 |
| 1466 DISALLOW_COPY_AND_ASSIGN(RenderViewImpl); | 1464 DISALLOW_COPY_AND_ASSIGN(RenderViewImpl); |
| 1467 }; | 1465 }; |
| 1468 | 1466 |
| 1469 } // namespace content | 1467 } // namespace content |
| 1470 | 1468 |
| 1471 #endif // CONTENT_RENDERER_RENDER_VIEW_IMPL_H_ | 1469 #endif // CONTENT_RENDERER_RENDER_VIEW_IMPL_H_ |
| OLD | NEW |