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

Unified Diff: ppapi/thunk/enter.h

Issue 11421066: Refactor PPB_Flash_Fullscreen to the new resource model. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: . Created 8 years, 1 month 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
« no previous file with comments | « ppapi/shared_impl/singleton_resource_id.h ('k') | ppapi/thunk/ppb_flash_api.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: ppapi/thunk/enter.h
diff --git a/ppapi/thunk/enter.h b/ppapi/thunk/enter.h
index b5e129f20824870b7bee3b42c5890c439189f557..358d0a2277640e7d9840a0232fd4a12267ab9c33 100644
--- a/ppapi/thunk/enter.h
+++ b/ppapi/thunk/enter.h
@@ -248,7 +248,7 @@ class PPAPI_THUNK_EXPORT EnterInstanceNoLock
// EnterInstanceAPI ------------------------------------------------------------
template<typename ApiT, bool lock_on_entry = true>
-class PPAPI_THUNK_EXPORT EnterInstanceAPI
+class EnterInstanceAPI
: public subtle::EnterBase,
public subtle::LockOnEntry<lock_on_entry> {
public:
@@ -278,8 +278,7 @@ class PPAPI_THUNK_EXPORT EnterInstanceAPI
};
template<typename ApiT>
-class PPAPI_THUNK_EXPORT EnterInstanceAPINoLock
- : public EnterInstanceAPI<ApiT, false> {
+class EnterInstanceAPINoLock : public EnterInstanceAPI<ApiT, false> {
public:
explicit EnterInstanceAPINoLock(PP_Instance instance)
: EnterInstanceAPI<ApiT, false>(instance) {
« no previous file with comments | « ppapi/shared_impl/singleton_resource_id.h ('k') | ppapi/thunk/ppb_flash_api.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698