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

Side by Side Diff: content/browser/plugin_process_host.h

Issue 6538111: Move the rest of the core files in chrome\browser to content\browser.... (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
« no previous file with comments | « content/browser/modal_html_dialog_delegate.cc ('k') | content/browser/plugin_process_host.cc » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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
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_
OLDNEW
« no previous file with comments | « content/browser/modal_html_dialog_delegate.cc ('k') | content/browser/plugin_process_host.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698