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

Side by Side Diff: src/shared/ppapi_proxy/plugin_url_loader.h

Issue 6177007: ppapi_proxy: Support loading and reading urls. Proxy URLLoader.... (Closed) Base URL: svn://svn.chromium.org/native_client/trunk/src/native_client/
Patch Set: '' Created 9 years, 11 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 | « src/shared/ppapi_proxy/plugin_upcall.cc ('k') | src/shared/ppapi_proxy/plugin_url_loader.cc » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
(Empty)
1 /*
2 * Copyright 2010 The Native Client Authors. All rights reserved.
3 * Use of this source code is governed by a BSD-style license that can
4 * be found in the LICENSE file.
5 */
6
7 #ifndef NATIVE_CLIENT_SRC_SHARED_PPAPI_PROXY_PLUGIN_URL_LOADER_H_
8 #define NATIVE_CLIENT_SRC_SHARED_PPAPI_PROXY_PLUGIN_URL_LOADER_H_
9
10 #include "native_client/src/include/nacl_macros.h"
11 #include "ppapi/c/ppb_url_loader.h"
12
13 namespace ppapi_proxy {
14
15 // Implements the plugin (i.e., .nexe) side of the PPB_URLLoader interface.
16 class PluginURLLoader {
17 public:
18 static const PPB_URLLoader* GetInterface();
19
20 private:
21 NACL_DISALLOW_COPY_AND_ASSIGN(PluginURLLoader);
22 };
23
24 } // namespace ppapi_proxy
25
26 #endif // NATIVE_CLIENT_SRC_SHARED_PPAPI_PROXY_PLUGIN_URL_LOADER_H_
OLDNEW
« no previous file with comments | « src/shared/ppapi_proxy/plugin_upcall.cc ('k') | src/shared/ppapi_proxy/plugin_url_loader.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698