summaryrefslogtreecommitdiffstats
path: root/ppapi/proxy
diff options
context:
space:
mode:
authormseaborn@chromium.org <mseaborn@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2013-07-17 19:15:29 +0000
committermseaborn@chromium.org <mseaborn@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2013-07-17 19:15:29 +0000
commit7f42326ae935469069941bad131b27c5025f8848 (patch)
tree1bc8c19130f9aae3d462a9b538b89ce8237a9ca6 /ppapi/proxy
parent183dea0ac791d107c26d3dccbcf183e1a9e9918d (diff)
downloadchromium_src-7f42326ae935469069941bad131b27c5025f8848.zip
chromium_src-7f42326ae935469069941bad131b27c5025f8848.tar.gz
chromium_src-7f42326ae935469069941bad131b27c5025f8848.tar.bz2
Add explicit "ppapi/" to #include in ppapi/proxy
The Chrome style is to use the full path of the header file. This cleanup should let us remove "ppapi" from the header file search path. Having "ppapi/" be implicit is left over from when these source files were moved from the NaCl repo into the Chrome repo. BUG=https://code.google.com/p/nativeclient/issues/detail?id=2500 TEST=build Review URL: https://codereview.chromium.org/19601004 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@212108 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'ppapi/proxy')
-rw-r--r--ppapi/proxy/plugin_main_nacl.cc2
1 files changed, 1 insertions, 1 deletions
diff --git a/ppapi/proxy/plugin_main_nacl.cc b/ppapi/proxy/plugin_main_nacl.cc
index df59af9e..b489f46 100644
--- a/ppapi/proxy/plugin_main_nacl.cc
+++ b/ppapi/proxy/plugin_main_nacl.cc
@@ -19,11 +19,11 @@
#include "ipc/ipc_channel_handle.h"
#include "ipc/ipc_logging.h"
#include "ipc/ipc_message.h"
-#include "native_client/src/shared/ppapi_proxy/ppruntime.h"
#include "native_client/src/shared/srpc/nacl_srpc.h"
#include "native_client/src/untrusted/irt/irt_ppapi.h"
#include "ppapi/c/ppp.h"
#include "ppapi/c/ppp_instance.h"
+#include "ppapi/native_client/src/shared/ppapi_proxy/ppruntime.h"
#include "ppapi/proxy/plugin_dispatcher.h"
#include "ppapi/proxy/plugin_globals.h"
#include "ppapi/proxy/plugin_proxy_delegate.h"