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 416 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
427 const WebKit::WebGraphicsContext3D::Attributes& attributes); | 427 const WebKit::WebGraphicsContext3D::Attributes& attributes); |
428 virtual void didAddMessageToConsole( | 428 virtual void didAddMessageToConsole( |
429 const WebKit::WebConsoleMessage& message, | 429 const WebKit::WebConsoleMessage& message, |
430 const WebKit::WebString& source_name, | 430 const WebKit::WebString& source_name, |
431 unsigned source_line); | 431 unsigned source_line); |
432 virtual void printPage(WebKit::WebFrame* frame); | 432 virtual void printPage(WebKit::WebFrame* frame); |
433 virtual WebKit::WebNotificationPresenter* notificationPresenter(); | 433 virtual WebKit::WebNotificationPresenter* notificationPresenter(); |
434 virtual bool enumerateChosenDirectory( | 434 virtual bool enumerateChosenDirectory( |
435 const WebKit::WebString& path, | 435 const WebKit::WebString& path, |
436 WebKit::WebFileChooserCompletion* chooser_completion); | 436 WebKit::WebFileChooserCompletion* chooser_completion); |
437 virtual void initializeHelperPluginWebFrame( | |
438 WebKit::WebHelperPlugin*) OVERRIDE; | |
jamesr
2012/06/22 18:46:42
if this is implementing WebKit API, then no OVERRI
ddorwin
2012/06/22 19:39:19
Done.
| |
437 virtual void didStartLoading(); | 439 virtual void didStartLoading(); |
438 virtual void didStopLoading(); | 440 virtual void didStopLoading(); |
439 virtual void didChangeLoadProgress(WebKit::WebFrame* frame, | 441 virtual void didChangeLoadProgress(WebKit::WebFrame* frame, |
440 double load_progress); | 442 double load_progress); |
441 virtual bool isSmartInsertDeleteEnabled(); | 443 virtual bool isSmartInsertDeleteEnabled(); |
442 virtual bool isSelectTrailingWhitespaceEnabled(); | 444 virtual bool isSelectTrailingWhitespaceEnabled(); |
443 virtual void didChangeSelection(bool is_selection_empty); | 445 virtual void didChangeSelection(bool is_selection_empty); |
444 virtual void didExecuteCommand(const WebKit::WebString& command_name); | 446 virtual void didExecuteCommand(const WebKit::WebString& command_name); |
445 virtual bool handleCurrentKeyboardEvent(); | 447 virtual bool handleCurrentKeyboardEvent(); |
446 virtual WebKit::WebColorChooser* createColorChooser( | 448 virtual WebKit::WebColorChooser* createColorChooser( |
(...skipping 985 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
1432 // bunch of stuff, you should probably create a helper class and put your | 1434 // bunch of stuff, you should probably create a helper class and put your |
1433 // data and methods on that to avoid bloating RenderView more. You can | 1435 // data and methods on that to avoid bloating RenderView more. You can |
1434 // 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 |
1435 // notifications. | 1437 // notifications. |
1436 // --------------------------------------------------------------------------- | 1438 // --------------------------------------------------------------------------- |
1437 | 1439 |
1438 DISALLOW_COPY_AND_ASSIGN(RenderViewImpl); | 1440 DISALLOW_COPY_AND_ASSIGN(RenderViewImpl); |
1439 }; | 1441 }; |
1440 | 1442 |
1441 #endif // CONTENT_RENDERER_RENDER_VIEW_IMPL_H_ | 1443 #endif // CONTENT_RENDERER_RENDER_VIEW_IMPL_H_ |
OLD | NEW |