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

Unified Diff: trunk/src/ppapi/proxy/locking_resource_releaser.h

Issue 12920003: Revert 189518 "PPAPI: Remove threading options; it's always on" (Closed) Base URL: svn://svn.chromium.org/chrome/
Patch Set: Created 7 years, 9 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
« no previous file with comments | « trunk/src/ppapi/proxy/flash_resource_unittest.cc ('k') | trunk/src/ppapi/proxy/plugin_globals.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: trunk/src/ppapi/proxy/locking_resource_releaser.h
===================================================================
--- trunk/src/ppapi/proxy/locking_resource_releaser.h (revision 189681)
+++ trunk/src/ppapi/proxy/locking_resource_releaser.h (working copy)
@@ -1,41 +0,0 @@
-// Copyright (c) 2013 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 PPAPI_PROXY_LOCKING_RESOURCE_RELEASER_H_
-#define PPAPI_PROXY_LOCKING_RESOURCE_RELEASER_H_
-
-#include "ppapi/shared_impl/ppapi_globals.h"
-#include "ppapi/shared_impl/proxy_lock.h"
-#include "ppapi/shared_impl/resource_tracker.h"
-
-namespace ppapi {
-namespace proxy {
-
-// LockingResourceReleaser is a simple RAII class for releasing a resource at
-// the end of scope. This acquires the ProxyLock before releasing the resource.
-// It is for use in unit tests. Most proxy or implementation code should use
-// ScopedPPResource instead. Unit tests sometimes can't use ScopedPPResource
-// because it asserts that the ProxyLock is already held.
-class LockingResourceReleaser {
- public:
- explicit LockingResourceReleaser(PP_Resource resource)
- : resource_(resource) {
- }
- ~LockingResourceReleaser() {
- ProxyAutoLock lock;
- PpapiGlobals::Get()->GetResourceTracker()->ReleaseResource(resource_);
- }
-
- PP_Resource get() { return resource_; }
-
- private:
- PP_Resource resource_;
-
- DISALLOW_COPY_AND_ASSIGN(LockingResourceReleaser);
-};
-
-} // namespace proxy
-} // namespace ppapi
-
-#endif // PPAPI_PROXY_LOCKING_RESOURCE_RELEASER_H_
« no previous file with comments | « trunk/src/ppapi/proxy/flash_resource_unittest.cc ('k') | trunk/src/ppapi/proxy/plugin_globals.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698