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

Side by Side Diff: ios/chrome/browser/suggestions/ios_image_decoder_impl.h

Issue 2111573002: Add ios_image_decoder_impl.* (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Fix typo in ios_chrome.gyp Created 4 years, 5 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 unified diff | Download patch
OLDNEW
(Empty)
1 // Copyright 2016 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file.
4
5 #ifndef IOS_CHROME_BROWSER_SUGGESTIONS_IOS_IMAGE_DECODER_IMPL_H_
6 #define IOS_CHROME_BROWSER_SUGGESTIONS_IOS_IMAGE_DECODER_IMPL_H_
7
8 #include "base/macros.h"
9 #include "components/image_fetcher/image_decoder.h"
10
11 namespace suggestions {
12
13 class IOSImageDecoderImpl : public image_fetcher::ImageDecoder {
14 public:
15 IOSImageDecoderImpl();
16 ~IOSImageDecoderImpl() override;
17
18 void DecodeImage(
19 const std::string& image_data,
20 const image_fetcher::ImageDecodedCallback& callback) override;
21
22 private:
23 DISALLOW_COPY_AND_ASSIGN(IOSImageDecoderImpl);
24 };
25
26 } // namespace suggestions
27
28 #endif // IOS_CHROME_BROWSER_SUGGESTIONS_IOS_IMAGE_DECODER_IMPL_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698