Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(111)

Side by Side Diff: chrome/renderer/render_view.h

Issue 6458004: Remove includes of message headers in headers. (Closed) Base URL: svn://chrome-svn/chrome/trunk/src/
Patch Set: '' Created 9 years, 10 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
OLDNEW
1 // Copyright (c) 2011 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2011 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 CHROME_RENDERER_RENDER_VIEW_H_ 5 #ifndef CHROME_RENDERER_RENDER_VIEW_H_
6 #define CHROME_RENDERER_RENDER_VIEW_H_ 6 #define CHROME_RENDERER_RENDER_VIEW_H_
7 #pragma once 7 #pragma once
8 8
9 #include <deque> 9 #include <deque>
10 #include <map> 10 #include <map>
11 #include <queue> 11 #include <queue>
12 #include <set> 12 #include <set>
13 #include <string> 13 #include <string>
14 #include <vector> 14 #include <vector>
15 15
16 #include "app/surface/transport_dib.h" 16 #include "app/surface/transport_dib.h"
17 #include "base/basictypes.h" 17 #include "base/basictypes.h"
18 #include "base/gtest_prod_util.h" 18 #include "base/gtest_prod_util.h"
19 #include "base/linked_ptr.h" 19 #include "base/linked_ptr.h"
20 #include "base/observer_list.h" 20 #include "base/observer_list.h"
21 #include "base/timer.h" 21 #include "base/timer.h"
22 #include "base/weak_ptr.h" 22 #include "base/weak_ptr.h"
23 #include "build/build_config.h" 23 #include "build/build_config.h"
24 #include "chrome/common/content_settings.h" 24 #include "chrome/common/content_settings.h"
25 #include "chrome/common/edit_command.h" 25 #include "chrome/common/edit_command.h"
26 #include "chrome/common/navigation_gesture.h" 26 #include "chrome/common/navigation_gesture.h"
27 #include "chrome/common/page_zoom.h" 27 #include "chrome/common/page_zoom.h"
28 #include "chrome/common/render_messages.h"
29 #include "chrome/common/render_messages_params.h" 28 #include "chrome/common/render_messages_params.h"
30 #include "chrome/common/renderer_preferences.h" 29 #include "chrome/common/renderer_preferences.h"
31 #include "chrome/common/view_types.h" 30 #include "chrome/common/view_types.h"
32 #include "chrome/renderer/external_popup_menu.h" 31 #include "chrome/renderer/external_popup_menu.h"
33 #include "chrome/renderer/page_load_histograms.h" 32 #include "chrome/renderer/page_load_histograms.h"
34 #include "chrome/renderer/pepper_plugin_delegate_impl.h" 33 #include "chrome/renderer/pepper_plugin_delegate_impl.h"
35 #include "chrome/renderer/render_widget.h" 34 #include "chrome/renderer/render_widget.h"
36 #include "chrome/renderer/renderer_webcookiejar_impl.h" 35 #include "chrome/renderer/renderer_webcookiejar_impl.h"
37 #include "chrome/renderer/searchbox.h" 36 #include "chrome/renderer/searchbox.h"
37 #include "ipc/ipc_platform_file.h"
38 #include "third_party/WebKit/Source/WebKit/chromium/public/WebConsoleMessage.h" 38 #include "third_party/WebKit/Source/WebKit/chromium/public/WebConsoleMessage.h"
39 #include "third_party/WebKit/Source/WebKit/chromium/public/WebFileSystem.h" 39 #include "third_party/WebKit/Source/WebKit/chromium/public/WebFileSystem.h"
40 #include "third_party/WebKit/Source/WebKit/chromium/public/WebFrameClient.h" 40 #include "third_party/WebKit/Source/WebKit/chromium/public/WebFrameClient.h"
41 #include "third_party/WebKit/Source/WebKit/chromium/public/WebMediaPlayerAction. h" 41 #include "third_party/WebKit/Source/WebKit/chromium/public/WebMediaPlayerAction. h"
42 #include "third_party/WebKit/Source/WebKit/chromium/public/WebPageSerializerClie nt.h" 42 #include "third_party/WebKit/Source/WebKit/chromium/public/WebPageSerializerClie nt.h"
43 #include "third_party/WebKit/Source/WebKit/chromium/public/WebNode.h" 43 #include "third_party/WebKit/Source/WebKit/chromium/public/WebNode.h"
44 #include "third_party/WebKit/Source/WebKit/chromium/public/WebTextDirection.h" 44 #include "third_party/WebKit/Source/WebKit/chromium/public/WebTextDirection.h"
45 #include "third_party/WebKit/Source/WebKit/chromium/public/WebViewClient.h" 45 #include "third_party/WebKit/Source/WebKit/chromium/public/WebViewClient.h"
46 #include "third_party/WebKit/Source/WebKit/chromium/public/WebNavigationType.h" 46 #include "third_party/WebKit/Source/WebKit/chromium/public/WebNavigationType.h"
47 #include "webkit/glue/webpreferences.h" 47 #include "webkit/glue/webpreferences.h"
(...skipping 29 matching lines...) Expand all
77 class RenderViewVisitor; 77 class RenderViewVisitor;
78 class SkBitmap; 78 class SkBitmap;
79 class SpeechInputDispatcher; 79 class SpeechInputDispatcher;
80 class WebPluginDelegatePepper; 80 class WebPluginDelegatePepper;
81 class WebPluginDelegateProxy; 81 class WebPluginDelegateProxy;
82 struct ContextMenuMediaParams; 82 struct ContextMenuMediaParams;
83 struct PP_Flash_NetAddress; 83 struct PP_Flash_NetAddress;
84 struct ThumbnailScore; 84 struct ThumbnailScore;
85 struct ViewMsg_ClosePage_Params; 85 struct ViewMsg_ClosePage_Params;
86 struct ViewMsg_Navigate_Params; 86 struct ViewMsg_Navigate_Params;
87 struct WebApplicationInfo;
87 struct WebDropData; 88 struct WebDropData;
88 89
89 namespace base { 90 namespace base {
90 class WaitableEvent; 91 class WaitableEvent;
91 } 92 }
92 93
93 namespace gfx { 94 namespace gfx {
94 class Point; 95 class Point;
95 class Rect; 96 class Rect;
96 } 97 }
(...skipping 1356 matching lines...) Expand 10 before | Expand all | Expand 10 after
1453 // bunch of stuff, you should probably create a helper class and put your 1454 // bunch of stuff, you should probably create a helper class and put your
1454 // data and methods on that to avoid bloating RenderView more. You can use 1455 // data and methods on that to avoid bloating RenderView more. You can use
1455 // the Observer interface to filter IPC messages and receive frame change 1456 // the Observer interface to filter IPC messages and receive frame change
1456 // notifications. 1457 // notifications.
1457 // --------------------------------------------------------------------------- 1458 // ---------------------------------------------------------------------------
1458 1459
1459 DISALLOW_COPY_AND_ASSIGN(RenderView); 1460 DISALLOW_COPY_AND_ASSIGN(RenderView);
1460 }; 1461 };
1461 1462
1462 #endif // CHROME_RENDERER_RENDER_VIEW_H_ 1463 #endif // CHROME_RENDERER_RENDER_VIEW_H_
OLDNEW
« no previous file with comments | « chrome/renderer/pepper_scrollbar_widget.cc ('k') | chrome/renderer/renderer_webapplicationcachehost_impl.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698