OLD | NEW |
1 // Copyright (c) 2010 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2010 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_PLUGIN_PROCESS_HOST_H_ | 5 #ifndef CHROME_BROWSER_PLUGIN_PROCESS_HOST_H_ |
6 #define CHROME_BROWSER_PLUGIN_PROCESS_HOST_H_ | 6 #define CHROME_BROWSER_PLUGIN_PROCESS_HOST_H_ |
7 #pragma once | 7 #pragma once |
8 | 8 |
9 #include "build/build_config.h" | 9 #include "build/build_config.h" |
10 | 10 |
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 "base/basictypes.h" | 16 #include "base/basictypes.h" |
17 #include "base/ref_counted.h" | 17 #include "base/ref_counted.h" |
18 #include "chrome/browser/browser_child_process_host.h" | 18 #include "chrome/browser/browser_child_process_host.h" |
19 #include "chrome/browser/net/resolve_proxy_msg_helper.h" | 19 #include "chrome/browser/net/resolve_proxy_msg_helper.h" |
20 #include "chrome/browser/renderer_host/resource_message_filter.h" | 20 #include "chrome/browser/renderer_host/resource_message_filter.h" |
21 #include "gfx/native_widget_types.h" | |
22 #include "ipc/ipc_channel_handle.h" | 21 #include "ipc/ipc_channel_handle.h" |
23 #include "webkit/glue/plugins/webplugininfo.h" | 22 #include "webkit/glue/plugins/webplugininfo.h" |
24 | 23 |
25 namespace gfx { | 24 namespace gfx { |
26 class Rect; | 25 class Rect; |
27 } | 26 } |
28 | 27 |
29 class URLRequestContext; | 28 class URLRequestContext; |
30 struct ViewHostMsg_Resource_Request; | 29 struct ViewHostMsg_Resource_Request; |
31 class GURL; | 30 class GURL; |
(...skipping 145 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
177 // Tracks modal windows currently visible. | 176 // Tracks modal windows currently visible. |
178 std::set<uint32> plugin_modal_windows_set_; | 177 std::set<uint32> plugin_modal_windows_set_; |
179 // Tracks the current visibility of the cursor. | 178 // Tracks the current visibility of the cursor. |
180 bool plugin_cursor_visible_; | 179 bool plugin_cursor_visible_; |
181 #endif | 180 #endif |
182 | 181 |
183 DISALLOW_COPY_AND_ASSIGN(PluginProcessHost); | 182 DISALLOW_COPY_AND_ASSIGN(PluginProcessHost); |
184 }; | 183 }; |
185 | 184 |
186 #endif // CHROME_BROWSER_PLUGIN_PROCESS_HOST_H_ | 185 #endif // CHROME_BROWSER_PLUGIN_PROCESS_HOST_H_ |
OLD | NEW |