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 CONTENT_BROWSER_PLUGIN_PROCESS_HOST_H_ |
6 #define CHROME_BROWSER_PLUGIN_PROCESS_HOST_H_ | 6 #define CONTENT_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" | |
19 #include "chrome/browser/net/resolve_proxy_msg_helper.h" | 18 #include "chrome/browser/net/resolve_proxy_msg_helper.h" |
| 19 #include "content/browser/browser_child_process_host.h" |
20 #include "ui/gfx/native_widget_types.h" | 20 #include "ui/gfx/native_widget_types.h" |
21 #include "webkit/plugins/npapi/webplugininfo.h" | 21 #include "webkit/plugins/npapi/webplugininfo.h" |
22 | 22 |
23 namespace gfx { | 23 namespace gfx { |
24 class Rect; | 24 class Rect; |
25 } | 25 } |
26 | 26 |
27 namespace IPC { | 27 namespace IPC { |
28 struct ChannelHandle; | 28 struct ChannelHandle; |
29 } | 29 } |
(...skipping 137 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
167 std::set<uint32> plugin_fullscreen_windows_set_; | 167 std::set<uint32> plugin_fullscreen_windows_set_; |
168 // Tracks modal windows currently visible. | 168 // Tracks modal windows currently visible. |
169 std::set<uint32> plugin_modal_windows_set_; | 169 std::set<uint32> plugin_modal_windows_set_; |
170 // Tracks the current visibility of the cursor. | 170 // Tracks the current visibility of the cursor. |
171 bool plugin_cursor_visible_; | 171 bool plugin_cursor_visible_; |
172 #endif | 172 #endif |
173 | 173 |
174 DISALLOW_COPY_AND_ASSIGN(PluginProcessHost); | 174 DISALLOW_COPY_AND_ASSIGN(PluginProcessHost); |
175 }; | 175 }; |
176 | 176 |
177 #endif // CHROME_BROWSER_PLUGIN_PROCESS_HOST_H_ | 177 #endif // CONTENT_BROWSER_PLUGIN_PROCESS_HOST_H_ |
OLD | NEW |