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

Side by Side Diff: src/utils/ios/SkImageDecoder_iOS.mm

Issue 373383003: ios fixes (Closed) Base URL: https://skia.googlesource.com/skia.git@master
Patch Set: only build gyp on ios Created 6 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
« no previous file with comments | « src/ports/SkImageDecoder_CG.cpp ('k') | src/views/SkTouchGesture.cpp » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 /* 1 /*
2 * Copyright 2010 Google Inc. 2 * Copyright 2010 Google Inc.
3 * 3 *
4 * Use of this source code is governed by a BSD-style license that can be 4 * Use of this source code is governed by a BSD-style license that can be
5 * found in the LICENSE file. 5 * found in the LICENSE file.
6 */ 6 */
7 7
8 #import <CoreGraphics/CoreGraphics.h> 8 #import <CoreGraphics/CoreGraphics.h>
9 #include <CoreGraphics/CGColorSpace.h> 9 #include <CoreGraphics/CGColorSpace.h>
10 #import <UIKit/UIKit.h> 10 #import <UIKit/UIKit.h>
(...skipping 44 matching lines...) Expand 10 before | Expand all | Expand 10 after
55 ///////////////////////////////////////////////////////////////////////// 55 /////////////////////////////////////////////////////////////////////////
56 56
57 SkImageDecoder* SkImageDecoder::Factory(SkStreamRewindable* stream) { 57 SkImageDecoder* SkImageDecoder::Factory(SkStreamRewindable* stream) {
58 return new SkImageDecoder_iOS; 58 return new SkImageDecoder_iOS;
59 } 59 }
60 60
61 SkMovie* SkMovie::DecodeStream(SkStreamRewindable* stream) { 61 SkMovie* SkMovie::DecodeStream(SkStreamRewindable* stream) {
62 return NULL; 62 return NULL;
63 } 63 }
64 64
65 SkImageEncoder* SkImageEncoder::Create(Type t) {
66 return NULL;
67 }
68 65
OLDNEW
« no previous file with comments | « src/ports/SkImageDecoder_CG.cpp ('k') | src/views/SkTouchGesture.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698