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

Unified Diff: content/browser/plugin_loader_posix.h

Issue 11235068: Move the remaning files in content\common to the content namespace. (Closed) Base URL: svn://chrome-svn/chrome/trunk/src/
Patch Set: Created 8 years, 2 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « content/browser/gpu/gpu_process_host.cc ('k') | content/browser/plugin_loader_posix.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: content/browser/plugin_loader_posix.h
===================================================================
--- content/browser/plugin_loader_posix.h (revision 163632)
+++ content/browser/plugin_loader_posix.h (working copy)
@@ -23,7 +23,6 @@
namespace content {
class UtilityProcessHost;
-}
// This class is responsible for managing the out-of-process plugin loading on
// POSIX systems. It primarily lives on the IO thread, but has a brief stay on
@@ -47,7 +46,7 @@
// end, after which the list of loaded plugins is set on the PluginList and
// the completion callback is run.
class CONTENT_EXPORT PluginLoaderPosix
- : public NON_EXPORTED_BASE(content::UtilityProcessHostClient),
+ : public NON_EXPORTED_BASE(UtilityProcessHostClient),
public IPC::Sender {
public:
PluginLoaderPosix();
@@ -55,7 +54,7 @@
// Must be called from the IO thread.
void LoadPlugins(
scoped_refptr<base::MessageLoopProxy> target_loop,
- const content::PluginService::GetPluginsCallback& callback);
+ const PluginService::GetPluginsCallback& callback);
// UtilityProcessHostClient:
virtual void OnProcessCrashed(int exit_code) OVERRIDE;
@@ -67,11 +66,11 @@
private:
struct PendingCallback {
PendingCallback(scoped_refptr<base::MessageLoopProxy> target_loop,
- const content::PluginService::GetPluginsCallback& callback);
+ const PluginService::GetPluginsCallback& callback);
~PendingCallback();
scoped_refptr<base::MessageLoopProxy> target_loop;
- content::PluginService::GetPluginsCallback callback;
+ PluginService::GetPluginsCallback callback;
};
virtual ~PluginLoaderPosix();
@@ -96,7 +95,7 @@
bool MaybeRunPendingCallbacks();
// The process host for which this is a client.
- base::WeakPtr<content::UtilityProcessHost> process_host_;
+ base::WeakPtr<UtilityProcessHost> process_host_;
// A list of paths to plugins which will be loaded by the utility process, in
// the order specified by this vector.
@@ -123,4 +122,6 @@
DISALLOW_COPY_AND_ASSIGN(PluginLoaderPosix);
};
+} // namespace content
+
#endif // CONTENT_BROWSER_PLUGIN_LOADER_POSIX_H_
« no previous file with comments | « content/browser/gpu/gpu_process_host.cc ('k') | content/browser/plugin_loader_posix.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698