summaryrefslogtreecommitdiffstats
path: root/ppapi/proxy/ppb_text_input_proxy.h
diff options
context:
space:
mode:
authorthestig@chromium.org <thestig@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2011-11-11 08:04:07 +0000
committerthestig@chromium.org <thestig@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2011-11-11 08:04:07 +0000
commit0a6d5f653ade694a78328b7949672eceaa2daa01 (patch)
tree5e0c8e2a1f2e0c24449873016c32bfe216b38afb /ppapi/proxy/ppb_text_input_proxy.h
parent067e733f46069691d9c7991b560d6678eebf7896 (diff)
downloadchromium_src-0a6d5f653ade694a78328b7949672eceaa2daa01.zip
chromium_src-0a6d5f653ade694a78328b7949672eceaa2daa01.tar.gz
chromium_src-0a6d5f653ade694a78328b7949672eceaa2daa01.tar.bz2
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
Diffstat (limited to 'ppapi/proxy/ppb_text_input_proxy.h')
-rw-r--r--ppapi/proxy/ppb_text_input_proxy.h10
1 files changed, 4 insertions, 6 deletions
diff --git a/ppapi/proxy/ppb_text_input_proxy.h b/ppapi/proxy/ppb_text_input_proxy.h
index d692ea3..92a8b12 100644
--- a/ppapi/proxy/ppb_text_input_proxy.h
+++ b/ppapi/proxy/ppb_text_input_proxy.h
@@ -2,16 +2,14 @@
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
-#ifndef PPAPI_PPB_TEXT_INPUT_PROXY_H_
-#define PPAPI_PPB_TEXT_INPUT_PROXY_H_
+#ifndef PPAPI_PROXY_PPB_TEXT_INPUT_PROXY_H_
+#define PPAPI_PROXY_PPB_TEXT_INPUT_PROXY_H_
#include "ppapi/c/pp_instance.h"
#include "ppapi/c/pp_rect.h"
#include "ppapi/proxy/interface_proxy.h"
#include "ppapi/thunk/ppb_text_input_api.h"
-struct PPB_TextInput_Dev;
-
namespace ppapi {
namespace proxy {
@@ -19,7 +17,7 @@ class PPB_TextInput_Proxy
: public InterfaceProxy,
public ppapi::thunk::PPB_TextInput_FunctionAPI {
public:
- PPB_TextInput_Proxy(Dispatcher* dispatcher);
+ explicit PPB_TextInput_Proxy(Dispatcher* dispatcher);
virtual ~PPB_TextInput_Proxy();
// FunctionGroupBase overrides.
@@ -53,4 +51,4 @@ class PPB_TextInput_Proxy
} // namespace proxy
} // namespace ppapi
-#endif // PPAPI_PPB_TEXT_INPUT_PROXY_H_
+#endif // PPAPI_PROXY_PPB_TEXT_INPUT_PROXY_H_