summaryrefslogtreecommitdiff
path: root/chromium/third_party/blink/renderer/platform/testing/scoped_mocked_url.cc
diff options
context:
space:
mode:
Diffstat (limited to 'chromium/third_party/blink/renderer/platform/testing/scoped_mocked_url.cc')
-rw-r--r--chromium/third_party/blink/renderer/platform/testing/scoped_mocked_url.cc28
1 files changed, 28 insertions, 0 deletions
diff --git a/chromium/third_party/blink/renderer/platform/testing/scoped_mocked_url.cc b/chromium/third_party/blink/renderer/platform/testing/scoped_mocked_url.cc
new file mode 100644
index 00000000000..95965ad1875
--- /dev/null
+++ b/chromium/third_party/blink/renderer/platform/testing/scoped_mocked_url.cc
@@ -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 "third_party/blink/renderer/platform/testing/scoped_mocked_url.h"
+
+#include "third_party/blink/public/platform/platform.h"
+#include "third_party/blink/public/platform/web_url_loader_mock_factory.h"
+#include "third_party/blink/renderer/platform/testing/url_test_helpers.h"
+
+namespace blink {
+namespace test {
+
+ScopedMockedURL::ScopedMockedURL(const WebURL& url) : url_(url) {}
+
+ScopedMockedURL::~ScopedMockedURL() {
+ Platform::Current()->GetURLLoaderMockFactory()->UnregisterURL(url_);
+}
+
+ScopedMockedURLLoad::ScopedMockedURLLoad(const WebURL& full_url,
+ const WebString& file_path,
+ const WebString& mime_type)
+ : ScopedMockedURL(full_url) {
+ URLTestHelpers::RegisterMockedURLLoad(full_url, file_path, mime_type);
+}
+
+} // namespace test
+} // namespace blink