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 407 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
418 const blink::WebURLRequest& request, | 418 const blink::WebURLRequest& request, |
419 const blink::WebWindowFeatures& features, | 419 const blink::WebWindowFeatures& features, |
420 const blink::WebString& frame_name, | 420 const blink::WebString& frame_name, |
421 blink::WebNavigationPolicy policy, | 421 blink::WebNavigationPolicy policy, |
422 bool suppress_opener); | 422 bool suppress_opener); |
423 virtual blink::WebWidget* createPopupMenu(blink::WebPopupType popup_type); | 423 virtual blink::WebWidget* createPopupMenu(blink::WebPopupType popup_type); |
424 virtual blink::WebExternalPopupMenu* createExternalPopupMenu( | 424 virtual blink::WebExternalPopupMenu* createExternalPopupMenu( |
425 const blink::WebPopupMenuInfo& popup_menu_info, | 425 const blink::WebPopupMenuInfo& popup_menu_info, |
426 blink::WebExternalPopupMenuClient* popup_menu_client); | 426 blink::WebExternalPopupMenuClient* popup_menu_client); |
427 virtual blink::WebStorageNamespace* createSessionStorageNamespace(); | 427 virtual blink::WebStorageNamespace* createSessionStorageNamespace(); |
428 virtual bool shouldReportDetailedMessageForSource( | |
429 const blink::WebString& source); | |
430 virtual void didAddMessageToConsole( | |
431 const blink::WebConsoleMessage& message, | |
432 const blink::WebString& source_name, | |
433 unsigned source_line, | |
434 const blink::WebString& stack_trace); | |
435 virtual void printPage(blink::WebFrame* frame); | 428 virtual void printPage(blink::WebFrame* frame); |
436 virtual blink::WebNotificationPresenter* notificationPresenter(); | 429 virtual blink::WebNotificationPresenter* notificationPresenter(); |
437 virtual bool enumerateChosenDirectory( | 430 virtual bool enumerateChosenDirectory( |
438 const blink::WebString& path, | 431 const blink::WebString& path, |
439 blink::WebFileChooserCompletion* chooser_completion); | 432 blink::WebFileChooserCompletion* chooser_completion); |
440 // DEPRECATED | 433 // DEPRECATED |
441 virtual void didStartLoading(bool to_different_document); | 434 virtual void didStartLoading(bool to_different_document); |
442 // DEPRECATED | 435 // DEPRECATED |
443 virtual void didStopLoading(); | 436 virtual void didStopLoading(); |
444 | 437 |
(...skipping 990 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1435 // use the Observer interface to filter IPC messages and receive frame change | 1428 // use the Observer interface to filter IPC messages and receive frame change |
1436 // notifications. | 1429 // notifications. |
1437 // --------------------------------------------------------------------------- | 1430 // --------------------------------------------------------------------------- |
1438 | 1431 |
1439 DISALLOW_COPY_AND_ASSIGN(RenderViewImpl); | 1432 DISALLOW_COPY_AND_ASSIGN(RenderViewImpl); |
1440 }; | 1433 }; |
1441 | 1434 |
1442 } // namespace content | 1435 } // namespace content |
1443 | 1436 |
1444 #endif // CONTENT_RENDERER_RENDER_VIEW_IMPL_H_ | 1437 #endif // CONTENT_RENDERER_RENDER_VIEW_IMPL_H_ |
OLD | NEW |