Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(848)

Unified Diff: ppapi/native_client/src/shared/ppapi_proxy/plugin_ppb_view.h

Issue 10386080: Rename nacl::RefCounted to nacl::RefCountedThreadSafe (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: License bump Created 8 years, 7 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
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

Powered by Google App Engine
This is Rietveld 408576698