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

Unified Diff: Source/web/MediaKeysClientImpl.h

Issue 338713002: Remove duplicated provideMediaKeysTo() in MediaKeysClient.h (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Created 6 years, 6 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: Source/web/MediaKeysClientImpl.h
diff --git a/Source/web/MediaKeysClientImpl.h b/Source/web/MediaKeysClientImpl.h
index 504dfbf4a6919bd325f2c8c6c8d35600d455db1d..a82241f179f3722d12b12bf2276b784d05dcc4e5 100644
--- a/Source/web/MediaKeysClientImpl.h
+++ b/Source/web/MediaKeysClientImpl.h
@@ -15,10 +15,12 @@ class WebViewImpl;
class MediaKeysClientImpl FINAL : public WebCore::MediaKeysClient {
public:
- MediaKeysClientImpl();
+ static PassOwnPtr<WebCore::MediaKeysClient> create();
// WebCore::MediaKeysClient implementation.
virtual PassOwnPtr<WebContentDecryptionModule> createContentDecryptionModule(WebCore::ExecutionContext*, const String& keySystem) OVERRIDE;
+private:
+ MediaKeysClientImpl();
};
} // namespace blink

Powered by Google App Engine
This is Rietveld 408576698