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

Unified Diff: third_party/WebKit/Source/platform/testing/TestingPlatformSupport.h

Issue 2444873002: Move WebMIMERegistry impl from //content to blink:platform/network/mime (Closed)
Patch Set: rebased Created 4 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
Index: third_party/WebKit/Source/platform/testing/TestingPlatformSupport.h
diff --git a/third_party/WebKit/Source/platform/testing/TestingPlatformSupport.h b/third_party/WebKit/Source/platform/testing/TestingPlatformSupport.h
index dcd0abbe474762070e09484690213a250be10024..78ce356e2ac0e3a5d66678e60aed0658729e90a2 100644
--- a/third_party/WebKit/Source/platform/testing/TestingPlatformSupport.h
+++ b/third_party/WebKit/Source/platform/testing/TestingPlatformSupport.h
@@ -135,16 +135,18 @@ class TestingPlatformSupport : public Platform {
WebClipboard* clipboard() override;
WebFileUtilities* fileUtilities() override;
WebIDBFactory* idbFactory() override;
- WebMimeRegistry* mimeRegistry() override;
WebURLLoaderMockFactory* getURLLoaderMockFactory() override;
blink::WebURLLoader* createURLLoader() override;
-
WebData loadResource(const char* name) override;
WebURLError cancelledError(const WebURL&) const override;
+ InterfaceProvider* interfaceProvider() override;
protected:
+ class TestingInterfaceProvider;
+
const Config m_config;
Platform* const m_oldPlatform;
+ std::unique_ptr<TestingInterfaceProvider> m_interfaceProvider;
};
class TestingPlatformSupportWithMockScheduler : public TestingPlatformSupport {

Powered by Google App Engine
This is Rietveld 408576698