| 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 389 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 400 const blink::WebConsoleMessage& message, | 400 const blink::WebConsoleMessage& message, |
| 401 const blink::WebString& source_name, | 401 const blink::WebString& source_name, |
| 402 unsigned source_line, | 402 unsigned source_line, |
| 403 const blink::WebString& stack_trace); | 403 const blink::WebString& stack_trace); |
| 404 virtual void printPage(blink::WebFrame* frame); | 404 virtual void printPage(blink::WebFrame* frame); |
| 405 virtual blink::WebNotificationPresenter* notificationPresenter(); | 405 virtual blink::WebNotificationPresenter* notificationPresenter(); |
| 406 virtual bool enumerateChosenDirectory( | 406 virtual bool enumerateChosenDirectory( |
| 407 const blink::WebString& path, | 407 const blink::WebString& path, |
| 408 blink::WebFileChooserCompletion* chooser_completion); | 408 blink::WebFileChooserCompletion* chooser_completion); |
| 409 virtual void didStartLoading(bool to_different_document); | 409 virtual void didStartLoading(bool to_different_document); |
| 410 // DEPRECATED | |
| 411 virtual void didStartLoading(); | |
| 412 virtual void didStopLoading(); | 410 virtual void didStopLoading(); |
| 413 virtual void didChangeLoadProgress(blink::WebFrame* frame, | 411 virtual void didChangeLoadProgress(blink::WebFrame* frame, |
| 414 double load_progress); | 412 double load_progress); |
| 415 virtual void didCancelCompositionOnSelectionChange(); | 413 virtual void didCancelCompositionOnSelectionChange(); |
| 416 virtual void didChangeSelection(bool is_selection_empty); | 414 virtual void didChangeSelection(bool is_selection_empty); |
| 417 virtual void didExecuteCommand(const blink::WebString& command_name); | 415 virtual void didExecuteCommand(const blink::WebString& command_name); |
| 418 virtual bool handleCurrentKeyboardEvent(); | 416 virtual bool handleCurrentKeyboardEvent(); |
| 419 virtual blink::WebColorChooser* createColorChooser( | 417 virtual blink::WebColorChooser* createColorChooser( |
| 420 blink::WebColorChooserClient*, | 418 blink::WebColorChooserClient*, |
| 421 const blink::WebColor& initial_color, | 419 const blink::WebColor& initial_color, |
| (...skipping 1016 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1438 // use the Observer interface to filter IPC messages and receive frame change | 1436 // use the Observer interface to filter IPC messages and receive frame change |
| 1439 // notifications. | 1437 // notifications. |
| 1440 // --------------------------------------------------------------------------- | 1438 // --------------------------------------------------------------------------- |
| 1441 | 1439 |
| 1442 DISALLOW_COPY_AND_ASSIGN(RenderViewImpl); | 1440 DISALLOW_COPY_AND_ASSIGN(RenderViewImpl); |
| 1443 }; | 1441 }; |
| 1444 | 1442 |
| 1445 } // namespace content | 1443 } // namespace content |
| 1446 | 1444 |
| 1447 #endif // CONTENT_RENDERER_RENDER_VIEW_IMPL_H_ | 1445 #endif // CONTENT_RENDERER_RENDER_VIEW_IMPL_H_ |
| OLD | NEW |