| Index: ppapi/native_client/src/shared/ppapi_proxy/plugin_ppb_view.h
|
| diff --git a/ppapi/native_client/src/shared/ppapi_proxy/plugin_ppb_view.h b/ppapi/native_client/src/shared/ppapi_proxy/plugin_ppb_view.h
|
| index 99c5077286757af21ffa92706933fb64c5282dc2..b55fc2ab4a93fedbb4b05cc90711e41bbfb19329 100644
|
| --- a/ppapi/native_client/src/shared/ppapi_proxy/plugin_ppb_view.h
|
| +++ b/ppapi/native_client/src/shared/ppapi_proxy/plugin_ppb_view.h
|
| @@ -1,6 +1,6 @@
|
| -// 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.
|
| +// Copyright (c) 2012 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_VIEW_H_
|
| #define NATIVE_CLIENT_SRC_SHARED_PPAPI_PROXY_PLUGIN_VIEW_H_
|
| @@ -17,7 +17,6 @@ class PluginView : public PluginResource {
|
| public:
|
| PluginView();
|
| void Init(const ViewData& view_data);
|
| - virtual ~PluginView();
|
|
|
| // PluginResource implementation.
|
| virtual bool InitFromBrowserResource(PP_Resource /*resource*/) {
|
| @@ -29,10 +28,12 @@ class PluginView : public PluginResource {
|
| static const PPB_View* GetInterface();
|
|
|
| private:
|
| - IMPLEMENT_RESOURCE(PluginView);
|
| - NACL_DISALLOW_COPY_AND_ASSIGN(PluginView);
|
| + virtual ~PluginView();
|
|
|
| ViewData view_data_;
|
| +
|
| + IMPLEMENT_RESOURCE(PluginView);
|
| + NACL_DISALLOW_COPY_AND_ASSIGN(PluginView);
|
| };
|
|
|
| } // namespace ppapi_proxy
|
|
|