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

Side by Side Diff: content/ppapi_plugin/ppapi_thread.h

Issue 7048007: Move scoped_temp_dir and scoped_native_library back from base/memory to base. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: unknwn Created 9 years, 7 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/gpu/gpu_info_collector_win.cc ('k') | net/base/cert_database_nss_unittest.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) 2011 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2011 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 CONTENT_PPAPI_PLUGIN_PPAPI_THREAD_H_ 5 #ifndef CONTENT_PPAPI_PLUGIN_PPAPI_THREAD_H_
6 #define CONTENT_PPAPI_PLUGIN_PPAPI_THREAD_H_ 6 #define CONTENT_PPAPI_PLUGIN_PPAPI_THREAD_H_
7 #pragma once 7 #pragma once
8 8
9 #include "base/basictypes.h" 9 #include "base/basictypes.h"
10 #include "base/memory/scoped_native_library.h"
11 #include "base/memory/scoped_ptr.h" 10 #include "base/memory/scoped_ptr.h"
12 #include "base/process.h" 11 #include "base/process.h"
12 #include "base/scoped_native_library.h"
13 #include "build/build_config.h" 13 #include "build/build_config.h"
14 #include "content/common/child_thread.h" 14 #include "content/common/child_thread.h"
15 #include "ppapi/c/pp_module.h" 15 #include "ppapi/c/pp_module.h"
16 #include "ppapi/c/trusted/ppp_broker.h"
16 #include "ppapi/proxy/plugin_dispatcher.h" 17 #include "ppapi/proxy/plugin_dispatcher.h"
17 #include "ppapi/c/trusted/ppp_broker.h"
18 18
19 class FilePath; 19 class FilePath;
20 class PpapiWebKitThread; 20 class PpapiWebKitThread;
21 21
22 namespace IPC { 22 namespace IPC {
23 struct ChannelHandle; 23 struct ChannelHandle;
24 } 24 }
25 25
26 class PpapiThread : public ChildThread, 26 class PpapiThread : public ChildThread,
27 public pp::proxy::PluginDispatcher::PluginDelegate { 27 public pp::proxy::PluginDispatcher::PluginDelegate {
(...skipping 49 matching lines...) Expand 10 before | Expand all | Expand 10 after
77 77
78 // Lazily created by GetWebKitForwarding. 78 // Lazily created by GetWebKitForwarding.
79 scoped_ptr<ppapi::WebKitForwarding> webkit_forwarding_; 79 scoped_ptr<ppapi::WebKitForwarding> webkit_forwarding_;
80 80
81 scoped_ptr<PpapiWebKitThread> webkit_thread_; 81 scoped_ptr<PpapiWebKitThread> webkit_thread_;
82 82
83 DISALLOW_IMPLICIT_CONSTRUCTORS(PpapiThread); 83 DISALLOW_IMPLICIT_CONSTRUCTORS(PpapiThread);
84 }; 84 };
85 85
86 #endif // CONTENT_PPAPI_PLUGIN_PPAPI_THREAD_H_ 86 #endif // CONTENT_PPAPI_PLUGIN_PPAPI_THREAD_H_
OLDNEW
« no previous file with comments | « content/gpu/gpu_info_collector_win.cc ('k') | net/base/cert_database_nss_unittest.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698