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

Side by Side Diff: src/animator/SkDisplayEvent.cpp

Issue 19823003: Update obvious deps. (Closed) Base URL: http://skia.googlecode.com/svn/trunk/
Patch Set: Created 7 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 | Annotate | Revision Log
« no previous file with comments | « gyp/zlib.gyp ('k') | no next file » | 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 /* 2 /*
3 * Copyright 2006 The Android Open Source Project 3 * Copyright 2006 The Android Open Source Project
4 * 4 *
5 * Use of this source code is governed by a BSD-style license that can be 5 * Use of this source code is governed by a BSD-style license that can be
6 * found in the LICENSE file. 6 * found in the LICENSE file.
7 */ 7 */
8 8
9 9
10 #include "SkDisplayEvent.h" 10 #include "SkDisplayEvent.h"
(...skipping 232 matching lines...) Expand 10 before | Expand all | Expand 10 after
243 fMax = code; 243 fMax = code;
244 SkASSERT(count == 1 || index == SK_PROPERTY(keys)); 244 SkASSERT(count == 1 || index == SK_PROPERTY(keys));
245 if (--count > 0) { 245 if (--count > 0) {
246 SkASSERT(*chars == '-'); 246 SkASSERT(*chars == '-');
247 chars++; 247 chars++;
248 fMax = (SkKey) SkUTF8_NextUnichar(&chars); 248 fMax = (SkKey) SkUTF8_NextUnichar(&chars);
249 SkASSERT(fMax >= code); 249 SkASSERT(fMax >= code);
250 } 250 }
251 return true; 251 return true;
252 } 252 }
253 253 /*
254 #ifdef SK_BUILD_FOR_ANDROID 254 #ifdef SK_BUILD_FOR_ANDROID
djsollen 2013/07/22 13:24:01 If nothing is using this code shouldn't we remove
bungeman-skia 2013/07/22 13:44:32 Done.
255 255
256 #include "SkMetaData.h" 256 #include "SkMetaData.h"
257 #include "SkParse.h" 257 #include "SkParse.h"
258 #include "SkTextBox.h" 258 #include "SkTextBox.h"
259 #include "SkXMLWriter.h" 259 #include "SkXMLWriter.h"
260 260
261 void SkMetaData::setPtr(char const*, void*, PtrProc ) {} 261 void SkMetaData::setPtr(char const*, void*, PtrProc ) {}
262 void SkMetaData::setS32(char const*, int ) {} 262 void SkMetaData::setS32(char const*, int ) {}
263 bool SkEventSink::doEvent(SkEvent const& ) { return false; } 263 bool SkEventSink::doEvent(SkEvent const& ) { return false; }
264 bool SkXMLParser::parse(SkStream& ) { return false; } 264 bool SkXMLParser::parse(SkStream& ) { return false; }
(...skipping 52 matching lines...) Expand 10 before | Expand all | Expand 10 after
317 SkXMLWriter::~SkXMLWriter( ) {} 317 SkXMLWriter::~SkXMLWriter( ) {}
318 SkMetaData::SkMetaData() {} 318 SkMetaData::SkMetaData() {}
319 SkMetaData::~SkMetaData() {} 319 SkMetaData::~SkMetaData() {}
320 bool SkEventSink::onEvent(SkEvent const&) {return false;} 320 bool SkEventSink::onEvent(SkEvent const&) {return false;}
321 bool SkXMLParser::onEndElement(char const*) {return false;} 321 bool SkXMLParser::onEndElement(char const*) {return false;}
322 bool SkXMLParser::onAddAttribute(char const*, char const*) {return false;} 322 bool SkXMLParser::onAddAttribute(char const*, char const*) {return false;}
323 bool SkXMLParser::onStartElement(char const*) {return false;} 323 bool SkXMLParser::onStartElement(char const*) {return false;}
324 void SkXMLWriter::writeHeader() {} 324 void SkXMLWriter::writeHeader() {}
325 325
326 #endif 326 #endif
327 */
OLDNEW
« no previous file with comments | « gyp/zlib.gyp ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698