diff options
author | pdox@google.com <pdox@google.com@0039d316-1c4b-4281-b951-d872f2087c98> | 2011-09-23 20:42:31 +0000 |
---|---|---|
committer | pdox@google.com <pdox@google.com@0039d316-1c4b-4281-b951-d872f2087c98> | 2011-09-23 20:42:31 +0000 |
commit | f8c16eb52a703986b5448c23fd02838af152978a (patch) | |
tree | 30fd89d0968ed90fdbdecbf71732e564e392082a /ppapi/native_client | |
parent | f6fab24ff9a970c4a572ece08003bbe067b389bf (diff) | |
download | chromium_src-f8c16eb52a703986b5448c23fd02838af152978a.zip chromium_src-f8c16eb52a703986b5448c23fd02838af152978a.tar.gz chromium_src-f8c16eb52a703986b5448c23fd02838af152978a.tar.bz2 |
Declare PPB_Core as a struct, not a class. (Prevents Clang warning)
Review URL: http://codereview.chromium.org/8002017
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@102565 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'ppapi/native_client')
-rw-r--r-- | ppapi/native_client/src/shared/ppapi_proxy/plugin_ppb_core.h | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/ppapi/native_client/src/shared/ppapi_proxy/plugin_ppb_core.h b/ppapi/native_client/src/shared/ppapi_proxy/plugin_ppb_core.h index 1f5070c..6da2db3 100644 --- a/ppapi/native_client/src/shared/ppapi_proxy/plugin_ppb_core.h +++ b/ppapi/native_client/src/shared/ppapi_proxy/plugin_ppb_core.h @@ -1,13 +1,13 @@ -// Copyright 2011 The Chromium Authors. All rights reserved. -// Use of this source code is governed by a BSD-style license that can -// be found in the LICENSE file. +// Copyright (c) 2011 The Chromium Authors. All rights reserved. +// Use of this source code is governed by a BSD-style license that can be +// found in the LICENSE file. #ifndef NATIVE_CLIENT_SRC_SHARED_PPAPI_PROXY_PLUGIN_CORE_H_ #define NATIVE_CLIENT_SRC_SHARED_PPAPI_PROXY_PLUGIN_CORE_H_ #include "native_client/src/include/nacl_macros.h" -class PPB_Core; +struct PPB_Core; namespace ppapi_proxy { |