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

Side by Side Diff: components/webp_transcode/webp_network_client.h

Issue 1860003003: Remove the WebPNetworkClient* from iOS (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Build fix No. 2 Created 4 years, 8 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
« no previous file with comments | « components/webp_transcode/BUILD.gn ('k') | components/webp_transcode/webp_network_client.mm » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
(Empty)
1 // Copyright 2013 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 COMPONENTS_WEBP_TRANSCODE_WEBP_NETWORK_CLIENT_H_
6 #define COMPONENTS_WEBP_TRANSCODE_WEBP_NETWORK_CLIENT_H_
7
8 #import <Foundation/Foundation.h>
9
10 #include "base/memory/ref_counted.h"
11 #import "ios/net/clients/crn_forwarding_network_client.h"
12 #import "ios/net/clients/crn_forwarding_network_client_factory.h"
13
14 // Network client that decodes WebP images.
15 @interface WebPNetworkClient : CRNForwardingNetworkClient
16
17 // |runner| is the task runner used to perform the image decoding.
18 // Designated initializer.
19 - (instancetype)initWithTaskRunner:
20 (const scoped_refptr<base::SequencedTaskRunner>&)runner;
21
22 @end
23
24 #endif // COMPONENTS_WEBP_TRANSCODE_WEBP_NETWORK_CLIENT_H_
OLDNEW
« no previous file with comments | « components/webp_transcode/BUILD.gn ('k') | components/webp_transcode/webp_network_client.mm » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698