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

Unified Diff: third_party/WebKit/Source/platform/testing/ScopedMockedURL.cpp

Issue 2680723002: Generalize ScopedRegisteredURL as ScoedMockedURL* (Closed)
Patch Set: remove one more unused class Created 3 years, 10 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: third_party/WebKit/Source/platform/testing/ScopedMockedURL.cpp
diff --git a/third_party/WebKit/Source/platform/testing/ScopedMockedURL.cpp b/third_party/WebKit/Source/platform/testing/ScopedMockedURL.cpp
new file mode 100644
index 0000000000000000000000000000000000000000..30ead6a76c71fc9150973f431927edccc08b83bc
--- /dev/null
+++ b/third_party/WebKit/Source/platform/testing/ScopedMockedURL.cpp
@@ -0,0 +1,28 @@
+// Copyright 2017 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.
+
+#include "platform/testing/ScopedMockedURL.h"
+
+#include "platform/testing/URLTestHelpers.h"
+#include "public/platform/Platform.h"
+#include "public/platform/WebURLLoaderMockFactory.h"
+
+namespace blink {
+namespace testing {
+
+ScopedMockedURL::ScopedMockedURL(const WebURL& url) : m_url(url) {}
+
+ScopedMockedURL::~ScopedMockedURL() {
+ Platform::current()->getURLLoaderMockFactory()->unregisterURL(m_url);
+}
+
+ScopedMockedURLLoad::ScopedMockedURLLoad(const WebURL& fullURL,
+ const WebString& filePath,
+ const WebString& mimeType)
+ : ScopedMockedURL(fullURL) {
+ URLTestHelpers::registerMockedURLLoad(fullURL, filePath, mimeType);
+}
+
+} // namespace testing
+} // namespace blink

Powered by Google App Engine
This is Rietveld 408576698