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

Side by Side Diff: trunk/src/ppapi/native_client/src/trusted/plugin/plugin.h

Issue 406323003: Revert 284684 "Pepper: Delete FileDownloader in trusted plugin." (Closed) Base URL: svn://svn.chromium.org/chrome/
Patch Set: Created 6 years, 5 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
OLDNEW
1 // -*- c++ -*- 1 // -*- c++ -*-
2 // Copyright (c) 2012 The Chromium Authors. All rights reserved. 2 // Copyright (c) 2012 The Chromium Authors. All rights reserved.
3 // Use of this source code is governed by a BSD-style license that can be 3 // Use of this source code is governed by a BSD-style license that can be
4 // found in the LICENSE file. 4 // found in the LICENSE file.
5 5
6 // The portable representation of an instance and root scriptable object. 6 // The portable representation of an instance and root scriptable object.
7 // The PPAPI version of the plugin instantiates a subclass of this class. 7 // The PPAPI version of the plugin instantiates a subclass of this class.
8 8
9 #ifndef NATIVE_CLIENT_SRC_TRUSTED_PLUGIN_PLUGIN_H_ 9 #ifndef NATIVE_CLIENT_SRC_TRUSTED_PLUGIN_PLUGIN_H_
10 #define NATIVE_CLIENT_SRC_TRUSTED_PLUGIN_PLUGIN_H_ 10 #define NATIVE_CLIENT_SRC_TRUSTED_PLUGIN_PLUGIN_H_
(...skipping 10 matching lines...) Expand all
21 #include "native_client/src/include/nacl_string.h" 21 #include "native_client/src/include/nacl_string.h"
22 #include "native_client/src/public/nacl_file_info.h" 22 #include "native_client/src/public/nacl_file_info.h"
23 23
24 #include "ppapi/c/private/ppb_nacl_private.h" 24 #include "ppapi/c/private/ppb_nacl_private.h"
25 #include "ppapi/cpp/instance.h" 25 #include "ppapi/cpp/instance.h"
26 #include "ppapi/cpp/private/uma_private.h" 26 #include "ppapi/cpp/private/uma_private.h"
27 #include "ppapi/cpp/url_loader.h" 27 #include "ppapi/cpp/url_loader.h"
28 #include "ppapi/cpp/var.h" 28 #include "ppapi/cpp/var.h"
29 #include "ppapi/cpp/view.h" 29 #include "ppapi/cpp/view.h"
30 30
31 #include "ppapi/native_client/src/trusted/plugin/file_downloader.h"
31 #include "ppapi/native_client/src/trusted/plugin/nacl_subprocess.h" 32 #include "ppapi/native_client/src/trusted/plugin/nacl_subprocess.h"
32 #include "ppapi/native_client/src/trusted/plugin/pnacl_coordinator.h" 33 #include "ppapi/native_client/src/trusted/plugin/pnacl_coordinator.h"
33 #include "ppapi/native_client/src/trusted/plugin/service_runtime.h" 34 #include "ppapi/native_client/src/trusted/plugin/service_runtime.h"
34 #include "ppapi/native_client/src/trusted/plugin/utility.h" 35 #include "ppapi/native_client/src/trusted/plugin/utility.h"
35 36
36 #include "ppapi/utility/completion_callback_factory.h"
37
38 namespace nacl { 37 namespace nacl {
39 class DescWrapper; 38 class DescWrapper;
40 class DescWrapperFactory; 39 class DescWrapperFactory;
41 } // namespace nacl 40 } // namespace nacl
42 41
43 namespace pp { 42 namespace pp {
44 class CompletionCallback; 43 class CompletionCallback;
45 class URLLoader; 44 class URLLoader;
46 class URLUtil_Dev; 45 class URLUtil_Dev;
47 } 46 }
(...skipping 178 matching lines...) Expand 10 before | Expand all | Expand 10 after
226 225
227 PP_NaClFileInfo nexe_file_info_; 226 PP_NaClFileInfo nexe_file_info_;
228 227
229 const PPB_NaCl_Private* nacl_interface_; 228 const PPB_NaCl_Private* nacl_interface_;
230 pp::UMAPrivate uma_interface_; 229 pp::UMAPrivate uma_interface_;
231 }; 230 };
232 231
233 } // namespace plugin 232 } // namespace plugin
234 233
235 #endif // NATIVE_CLIENT_SRC_TRUSTED_PLUGIN_PLUGIN_H_ 234 #endif // NATIVE_CLIENT_SRC_TRUSTED_PLUGIN_PLUGIN_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698