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

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

Issue 7387010: Add PluginServiceFilter interface. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: add resource_context Created 9 years, 4 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 CONTENT_RENDERER_RENDER_VIEW_H_ 5 #ifndef CONTENT_RENDERER_RENDER_VIEW_H_
6 #define CONTENT_RENDERER_RENDER_VIEW_H_ 6 #define CONTENT_RENDERER_RENDER_VIEW_H_
7 #pragma once 7 #pragma once
8 8
9 #include <deque> 9 #include <deque>
10 #include <map> 10 #include <map>
(...skipping 67 matching lines...) Expand 10 before | Expand all | Expand 10 after
78 struct ViewHostMsg_RunFileChooser_Params; 78 struct ViewHostMsg_RunFileChooser_Params;
79 struct ViewMsg_SwapOut_Params; 79 struct ViewMsg_SwapOut_Params;
80 struct ViewMsg_Navigate_Params; 80 struct ViewMsg_Navigate_Params;
81 struct ViewMsg_StopFinding_Params; 81 struct ViewMsg_StopFinding_Params;
82 struct WebDropData; 82 struct WebDropData;
83 83
84 namespace base { 84 namespace base {
85 class WaitableEvent; 85 class WaitableEvent;
86 } 86 }
87 87
88 namespace chrome {
89 class ChromeContentRendererClient;
90 }
91
92 namespace gfx { 88 namespace gfx {
93 class Point; 89 class Point;
94 class Rect; 90 class Rect;
95 } 91 }
96 92
97 namespace webkit { 93 namespace webkit {
98 94
99 namespace npapi {
100 class PluginGroup;
101 } // namespace npapi
102
103 namespace ppapi { 95 namespace ppapi {
104 class PluginInstance; 96 class PluginInstance;
105 class PluginModule; 97 class PluginModule;
106 } // namespace ppapi 98 } // namespace ppapi
107 99
108 } // namespace webkit 100 } // namespace webkit
109 101
110 namespace webkit_glue { 102 namespace webkit_glue {
111 struct CustomContextMenuContext; 103 struct CustomContextMenuContext;
112 class ImageResourceFetcher; 104 class ImageResourceFetcher;
(...skipping 1080 matching lines...) Expand 10 before | Expand all | Expand 10 after
1193 // bunch of stuff, you should probably create a helper class and put your 1185 // bunch of stuff, you should probably create a helper class and put your
1194 // data and methods on that to avoid bloating RenderView more. You can use 1186 // data and methods on that to avoid bloating RenderView more. You can use
1195 // the Observer interface to filter IPC messages and receive frame change 1187 // the Observer interface to filter IPC messages and receive frame change
1196 // notifications. 1188 // notifications.
1197 // --------------------------------------------------------------------------- 1189 // ---------------------------------------------------------------------------
1198 1190
1199 DISALLOW_COPY_AND_ASSIGN(RenderView); 1191 DISALLOW_COPY_AND_ASSIGN(RenderView);
1200 }; 1192 };
1201 1193
1202 #endif // CONTENT_RENDERER_RENDER_VIEW_H_ 1194 #endif // CONTENT_RENDERER_RENDER_VIEW_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698