| 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 #pragma once | 7 #pragma once |
| 8 | 8 |
| 9 #include <deque> | 9 #include <deque> |
| 10 #include <map> | 10 #include <map> |
| (...skipping 419 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 430 const WebKit::WebGraphicsContext3D::Attributes& attributes); | 430 const WebKit::WebGraphicsContext3D::Attributes& attributes); |
| 431 virtual void didAddMessageToConsole( | 431 virtual void didAddMessageToConsole( |
| 432 const WebKit::WebConsoleMessage& message, | 432 const WebKit::WebConsoleMessage& message, |
| 433 const WebKit::WebString& source_name, | 433 const WebKit::WebString& source_name, |
| 434 unsigned source_line); | 434 unsigned source_line); |
| 435 virtual void printPage(WebKit::WebFrame* frame); | 435 virtual void printPage(WebKit::WebFrame* frame); |
| 436 virtual WebKit::WebNotificationPresenter* notificationPresenter(); | 436 virtual WebKit::WebNotificationPresenter* notificationPresenter(); |
| 437 virtual bool enumerateChosenDirectory( | 437 virtual bool enumerateChosenDirectory( |
| 438 const WebKit::WebString& path, | 438 const WebKit::WebString& path, |
| 439 WebKit::WebFileChooserCompletion* chooser_completion); | 439 WebKit::WebFileChooserCompletion* chooser_completion); |
| 440 virtual void initializeHelperPluginWebFrame(WebKit::WebHelperPlugin*); |
| 440 virtual void didStartLoading(); | 441 virtual void didStartLoading(); |
| 441 virtual void didStopLoading(); | 442 virtual void didStopLoading(); |
| 442 virtual void didChangeLoadProgress(WebKit::WebFrame* frame, | 443 virtual void didChangeLoadProgress(WebKit::WebFrame* frame, |
| 443 double load_progress); | 444 double load_progress); |
| 444 virtual bool isSmartInsertDeleteEnabled(); | 445 virtual bool isSmartInsertDeleteEnabled(); |
| 445 virtual bool isSelectTrailingWhitespaceEnabled(); | 446 virtual bool isSelectTrailingWhitespaceEnabled(); |
| 446 virtual void didChangeSelection(bool is_selection_empty); | 447 virtual void didChangeSelection(bool is_selection_empty); |
| 447 virtual void didExecuteCommand(const WebKit::WebString& command_name); | 448 virtual void didExecuteCommand(const WebKit::WebString& command_name); |
| 448 virtual bool handleCurrentKeyboardEvent(); | 449 virtual bool handleCurrentKeyboardEvent(); |
| 449 virtual WebKit::WebColorChooser* createColorChooser( | 450 virtual WebKit::WebColorChooser* createColorChooser( |
| (...skipping 981 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1431 // bunch of stuff, you should probably create a helper class and put your | 1432 // bunch of stuff, you should probably create a helper class and put your |
| 1432 // data and methods on that to avoid bloating RenderView more. You can | 1433 // data and methods on that to avoid bloating RenderView more. You can |
| 1433 // use the Observer interface to filter IPC messages and receive frame change | 1434 // use the Observer interface to filter IPC messages and receive frame change |
| 1434 // notifications. | 1435 // notifications. |
| 1435 // --------------------------------------------------------------------------- | 1436 // --------------------------------------------------------------------------- |
| 1436 | 1437 |
| 1437 DISALLOW_COPY_AND_ASSIGN(RenderViewImpl); | 1438 DISALLOW_COPY_AND_ASSIGN(RenderViewImpl); |
| 1438 }; | 1439 }; |
| 1439 | 1440 |
| 1440 #endif // CONTENT_RENDERER_RENDER_VIEW_IMPL_H_ | 1441 #endif // CONTENT_RENDERER_RENDER_VIEW_IMPL_H_ |
| OLD | NEW |