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

Unified Diff: ios/chrome/browser/net/mock_image_fetcher.h

Issue 2520373002: Remove the old image fetcher (Closed)
Patch Set: Remove the files Created 4 years 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 | « ios/chrome/browser/net/image_fetcher.mm ('k') | ios/chrome/browser/net/mock_image_fetcher.mm » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: ios/chrome/browser/net/mock_image_fetcher.h
diff --git a/ios/chrome/browser/net/mock_image_fetcher.h b/ios/chrome/browser/net/mock_image_fetcher.h
deleted file mode 100644
index 259eda6229f2e8349f0ede6b7092d1b50199de48..0000000000000000000000000000000000000000
--- a/ios/chrome/browser/net/mock_image_fetcher.h
+++ /dev/null
@@ -1,31 +0,0 @@
-// Copyright 2015 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.
-
-#ifndef IOS_CHROME_BROWSER_NET_MOCK_IMAGE_FETCHER_H_
-#define IOS_CHROME_BROWSER_NET_MOCK_IMAGE_FETCHER_H_
-
-#import "ios/chrome/browser/net/image_fetcher.h"
-
-#include "testing/gmock/include/gmock/gmock.h"
-
-// Mock the ImageFetcher utility class, which can be used to asynchronously
-// retrieve an image from an URL.
-class MockImageFetcher : public ImageFetcher {
- public:
- explicit MockImageFetcher(const scoped_refptr<base::TaskRunner>& task_runner);
- ~MockImageFetcher() override;
-
- MOCK_METHOD4(StartDownload,
- void(const GURL& url,
- ImageFetchedCallback callback,
- const std::string& referrer,
- net::URLRequest::ReferrerPolicy referrer_policy));
- MOCK_METHOD2(StartDownload,
- void(const GURL& url, ImageFetchedCallback callback));
- MOCK_METHOD1(SetRequestContextGetter,
- void(const scoped_refptr<net::URLRequestContextGetter>&
- request_context_getter));
-};
-
-#endif // IOS_CHROME_BROWSER_NET_MOCK_IMAGE_FETCHER_H_
« no previous file with comments | « ios/chrome/browser/net/image_fetcher.mm ('k') | ios/chrome/browser/net/mock_image_fetcher.mm » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698