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

Unified Diff: Source/modules/encryptedmedia/MediaKeysController.cpp

Issue 255983003: Oilpan: Move all supplements of Page, Document, and WorkerClients to the managed heap. (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: using namespace WebCore Created 6 years, 8 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 | « Source/modules/encryptedmedia/MediaKeysController.h ('k') | Source/modules/filesystem/LocalFileSystem.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/modules/encryptedmedia/MediaKeysController.cpp
diff --git a/Source/modules/encryptedmedia/MediaKeysController.cpp b/Source/modules/encryptedmedia/MediaKeysController.cpp
index cb154c241995dbe2e4afde97f306dfd1718eb693..6031c526fb9c88285b66bb9d55651d5c95453296 100644
--- a/Source/modules/encryptedmedia/MediaKeysController.cpp
+++ b/Source/modules/encryptedmedia/MediaKeysController.cpp
@@ -20,10 +20,6 @@ MediaKeysController::MediaKeysController(MediaKeysClient* client)
{
}
-MediaKeysController::~MediaKeysController()
-{
-}
-
PassOwnPtr<blink::WebContentDecryptionModule> MediaKeysController::createContentDecryptionModule(ExecutionContext* context, const String& keySystem)
{
return m_client->createContentDecryptionModule(context, keySystem);
@@ -32,7 +28,7 @@ PassOwnPtr<blink::WebContentDecryptionModule> MediaKeysController::createContent
void MediaKeysController::provideMediaKeysTo(Page& page, MediaKeysClient* client)
{
- MediaKeysController::provideTo(page, supplementName(), adoptPtr(new MediaKeysController(client)));
+ MediaKeysController::provideTo(page, supplementName(), adoptPtrWillBeNoop(new MediaKeysController(client)));
}
} // namespace WebCore
« no previous file with comments | « Source/modules/encryptedmedia/MediaKeysController.h ('k') | Source/modules/filesystem/LocalFileSystem.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698