Cleanup: Remove unneeded forward declarations in ppapi.
BUG=none
TEST=none
Review URL: http://codereview.chromium.org/8527020
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@109595 0039d316-1c4b-4281-b951-d872f2087c98
diff --git a/ppapi/proxy/ppb_buffer_proxy.h b/ppapi/proxy/ppb_buffer_proxy.h
index 9b39c2c..08a2753 100644
--- a/ppapi/proxy/ppb_buffer_proxy.h
+++ b/ppapi/proxy/ppb_buffer_proxy.h
@@ -2,8 +2,8 @@
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
-#ifndef PPAPI_PPB_BUFFER_PROXY_H_
-#define PPAPI_PPB_BUFFER_PROXY_H_
+#ifndef PPAPI_PROXY_PPB_BUFFER_PROXY_H_
+#define PPAPI_PROXY_PPB_BUFFER_PROXY_H_
#include "base/shared_memory.h"
#include "ppapi/c/pp_instance.h"
@@ -11,8 +11,6 @@
#include "ppapi/shared_impl/resource.h"
#include "ppapi/thunk/ppb_buffer_api.h"
-struct PPB_Buffer_Dev;
-
namespace ppapi {
class HostResource;
@@ -46,7 +44,7 @@
class PPB_Buffer_Proxy : public InterfaceProxy {
public:
- PPB_Buffer_Proxy(Dispatcher* dispatcher);
+ explicit PPB_Buffer_Proxy(Dispatcher* dispatcher);
virtual ~PPB_Buffer_Proxy();
static PP_Resource CreateProxyResource(PP_Instance instance,
@@ -71,4 +69,4 @@
} // namespace proxy
} // namespace ppapi
-#endif // PPAPI_PPB_BUFFER_PROXY_H_
+#endif // PPAPI_PROXY_PPB_BUFFER_PROXY_H_