Chromium Code Reviews| 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> |
| 11 #include <string> | 11 #include <string> |
| 12 #include <vector> | 12 #include <vector> |
| 13 | 13 |
| 14 #include "base/basictypes.h" | 14 #include "base/basictypes.h" |
| 15 #include "base/gtest_prod_util.h" | 15 #include "base/gtest_prod_util.h" |
| 16 #include "base/id_map.h" | 16 #include "base/id_map.h" |
| 17 #include "base/memory/linked_ptr.h" | 17 #include "base/memory/linked_ptr.h" |
| 18 #include "base/memory/weak_ptr.h" | 18 #include "base/memory/weak_ptr.h" |
| 19 #include "base/observer_list.h" | 19 #include "base/observer_list.h" |
| 20 #include "base/process/process.h" | 20 #include "base/process/process.h" |
| 21 #include "base/strings/string16.h" | |
|
pfeldman
2013/08/16 08:00:48
You don't need it anymore?
Devlin
2013/08/16 16:06:27
I added it originally as part of a separate patch,
| |
| 21 #include "base/timer/timer.h" | 22 #include "base/timer/timer.h" |
| 22 #include "build/build_config.h" | 23 #include "build/build_config.h" |
| 23 #include "cc/input/top_controls_state.h" | 24 #include "cc/input/top_controls_state.h" |
| 24 #include "content/common/content_export.h" | 25 #include "content/common/content_export.h" |
| 25 #include "content/common/drag_event_source_info.h" | 26 #include "content/common/drag_event_source_info.h" |
| 26 #include "content/common/edit_command.h" | 27 #include "content/common/edit_command.h" |
| 27 #include "content/common/gpu/client/webgraphicscontext3d_command_buffer_impl.h" | 28 #include "content/common/gpu/client/webgraphicscontext3d_command_buffer_impl.h" |
| 28 #include "content/common/navigation_gesture.h" | 29 #include "content/common/navigation_gesture.h" |
| 29 #include "content/common/view_message_enums.h" | 30 #include "content/common/view_message_enums.h" |
| 30 #include "content/public/common/javascript_message_type.h" | 31 #include "content/public/common/javascript_message_type.h" |
| (...skipping 407 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 438 WebKit::WebFrame* creator, | 439 WebKit::WebFrame* creator, |
| 439 const WebKit::WebURLRequest& request, | 440 const WebKit::WebURLRequest& request, |
| 440 const WebKit::WebWindowFeatures& features, | 441 const WebKit::WebWindowFeatures& features, |
| 441 const WebKit::WebString& frame_name, | 442 const WebKit::WebString& frame_name, |
| 442 WebKit::WebNavigationPolicy policy); | 443 WebKit::WebNavigationPolicy policy); |
| 443 virtual WebKit::WebWidget* createPopupMenu(WebKit::WebPopupType popup_type); | 444 virtual WebKit::WebWidget* createPopupMenu(WebKit::WebPopupType popup_type); |
| 444 virtual WebKit::WebExternalPopupMenu* createExternalPopupMenu( | 445 virtual WebKit::WebExternalPopupMenu* createExternalPopupMenu( |
| 445 const WebKit::WebPopupMenuInfo& popup_menu_info, | 446 const WebKit::WebPopupMenuInfo& popup_menu_info, |
| 446 WebKit::WebExternalPopupMenuClient* popup_menu_client); | 447 WebKit::WebExternalPopupMenuClient* popup_menu_client); |
| 447 virtual WebKit::WebStorageNamespace* createSessionStorageNamespace(); | 448 virtual WebKit::WebStorageNamespace* createSessionStorageNamespace(); |
| 449 virtual bool shouldReportDetailedMessageForSource( | |
| 450 const WebKit::WebString& source); | |
| 448 virtual void didAddMessageToConsole( | 451 virtual void didAddMessageToConsole( |
| 449 const WebKit::WebConsoleMessage& message, | 452 const WebKit::WebConsoleMessage& message, |
| 450 const WebKit::WebString& source_name, | 453 const WebKit::WebString& source_name, |
| 451 unsigned source_line); | 454 unsigned source_line, const WebKit::WebString& stack_trace); |
| 452 virtual void printPage(WebKit::WebFrame* frame); | 455 virtual void printPage(WebKit::WebFrame* frame); |
| 453 virtual WebKit::WebNotificationPresenter* notificationPresenter(); | 456 virtual WebKit::WebNotificationPresenter* notificationPresenter(); |
| 454 virtual bool enumerateChosenDirectory( | 457 virtual bool enumerateChosenDirectory( |
| 455 const WebKit::WebString& path, | 458 const WebKit::WebString& path, |
| 456 WebKit::WebFileChooserCompletion* chooser_completion); | 459 WebKit::WebFileChooserCompletion* chooser_completion); |
| 457 virtual void initializeHelperPluginWebFrame(WebKit::WebHelperPlugin*); | 460 virtual void initializeHelperPluginWebFrame(WebKit::WebHelperPlugin*); |
| 458 virtual void didStartLoading(); | 461 virtual void didStartLoading(); |
| 459 virtual void didStopLoading(); | 462 virtual void didStopLoading(); |
| 460 virtual void didChangeLoadProgress(WebKit::WebFrame* frame, | 463 virtual void didChangeLoadProgress(WebKit::WebFrame* frame, |
| 461 double load_progress); | 464 double load_progress); |
| (...skipping 1112 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 1574 // use the Observer interface to filter IPC messages and receive frame change | 1577 // use the Observer interface to filter IPC messages and receive frame change |
| 1575 // notifications. | 1578 // notifications. |
| 1576 // --------------------------------------------------------------------------- | 1579 // --------------------------------------------------------------------------- |
| 1577 | 1580 |
| 1578 DISALLOW_COPY_AND_ASSIGN(RenderViewImpl); | 1581 DISALLOW_COPY_AND_ASSIGN(RenderViewImpl); |
| 1579 }; | 1582 }; |
| 1580 | 1583 |
| 1581 } // namespace content | 1584 } // namespace content |
| 1582 | 1585 |
| 1583 #endif // CONTENT_RENDERER_RENDER_VIEW_IMPL_H_ | 1586 #endif // CONTENT_RENDERER_RENDER_VIEW_IMPL_H_ |
| OLD | NEW |