OLD | NEW |
1 // Copyright (c) 2006-2008 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2006-2008 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_BROWSER_RENDERER_RESOURCE_MSG_FILTER_H_ | 5 #ifndef CHROME_BROWSER_RENDERER_RESOURCE_MSG_FILTER_H_ |
6 #define CHROME_BROWSER_RENDERER_RESOURCE_MSG_FILTER_H_ | 6 #define CHROME_BROWSER_RENDERER_RESOURCE_MSG_FILTER_H_ |
7 | 7 |
8 #include "base/clipboard.h" | 8 #include "base/clipboard.h" |
9 #include "base/file_path.h" | 9 #include "base/file_path.h" |
10 #include "base/gfx/rect.h" | 10 #include "base/gfx/rect.h" |
11 #include "base/gfx/native_widget_types.h" | 11 #include "base/gfx/native_widget_types.h" |
12 #include "base/ref_counted.h" | 12 #include "base/ref_counted.h" |
13 #include "build/build_config.h" | 13 #include "build/build_config.h" |
14 #include "chrome/browser/net/resolve_proxy_msg_helper.h" | 14 #include "chrome/browser/net/resolve_proxy_msg_helper.h" |
15 #include "chrome/common/ipc_channel_proxy.h" | 15 #include "chrome/common/ipc_channel_proxy.h" |
| 16 #include "chrome/common/modal_dialog_event.h" |
16 #include "chrome/common/notification_observer.h" | 17 #include "chrome/common/notification_observer.h" |
17 #include "webkit/glue/cache_manager.h" | 18 #include "webkit/glue/cache_manager.h" |
18 | 19 |
19 #if defined(OS_WIN) | 20 #if defined(OS_WIN) |
20 #include <windows.h> | 21 #include <windows.h> |
21 #include "chrome/browser/renderer_host/resource_dispatcher_host.h" | 22 #include "chrome/browser/renderer_host/resource_dispatcher_host.h" |
22 #else | 23 #else |
23 // TODO(port): port ResourceDispatcherHost. | 24 // TODO(port): port ResourceDispatcherHost. |
24 #include "chrome/common/temp_scaffolding_stubs.h" | 25 #include "chrome/common/temp_scaffolding_stubs.h" |
25 #endif | 26 #endif |
(...skipping 210 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
236 // This is void* to prevent people from accidentally dereferencing it. | 237 // This is void* to prevent people from accidentally dereferencing it. |
237 // When registering for observers, cast to Profile*. | 238 // When registering for observers, cast to Profile*. |
238 void* profile_; | 239 void* profile_; |
239 | 240 |
240 scoped_refptr<RenderWidgetHelper> render_widget_helper_; | 241 scoped_refptr<RenderWidgetHelper> render_widget_helper_; |
241 | 242 |
242 DISALLOW_COPY_AND_ASSIGN(ResourceMessageFilter); | 243 DISALLOW_COPY_AND_ASSIGN(ResourceMessageFilter); |
243 }; | 244 }; |
244 | 245 |
245 #endif // CHROME_BROWSER_RENDERER_RESOURCE_MSG_FILTER_H_ | 246 #endif // CHROME_BROWSER_RENDERER_RESOURCE_MSG_FILTER_H_ |
OLD | NEW |