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

Side by Side Diff: src/core/SkPicture.cpp

Issue 243173002: Staging for cleanup of SkPicture-related headers (Closed) Base URL: http://skia.googlecode.com/svn/trunk/
Patch Set: Add crucial newline at end of file Created 6 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 | Annotate | Revision Log
« no previous file with comments | « src/core/SkBBHFactory.cpp ('k') | src/core/SkPictureRecorder.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 /* 2 /*
3 * Copyright 2007 The Android Open Source Project 3 * Copyright 2007 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 "SkPictureFlat.h" 10 #include "SkPictureFlat.h"
11 #include "SkPicturePlayback.h" 11 #include "SkPicturePlayback.h"
12 #include "SkPictureRecord.h" 12 #include "SkPictureRecord.h"
13 13
14 #include "SkBBHFactory.h"
14 #include "SkBitmapDevice.h" 15 #include "SkBitmapDevice.h"
15 #include "SkCanvas.h" 16 #include "SkCanvas.h"
16 #include "SkChunkAlloc.h" 17 #include "SkChunkAlloc.h"
17 #include "SkPicture.h" 18 #include "SkPicture.h"
18 #include "SkRegion.h" 19 #include "SkRegion.h"
19 #include "SkStream.h" 20 #include "SkStream.h"
20 #include "SkTDArray.h" 21 #include "SkTDArray.h"
21 #include "SkTSearch.h" 22 #include "SkTSearch.h"
22 #include "SkTime.h" 23 #include "SkTime.h"
23 24
(...skipping 535 matching lines...) Expand 10 before | Expand all | Expand 10 after
559 if (NULL != fRecord) { 560 if (NULL != fRecord) {
560 SkASSERT(NULL == fPlayback); 561 SkASSERT(NULL == fPlayback);
561 return SK_InvalidGenID; 562 return SK_InvalidGenID;
562 } 563 }
563 564
564 if (SK_InvalidGenID == fUniqueID) { 565 if (SK_InvalidGenID == fUniqueID) {
565 fUniqueID = next_picture_generation_id(); 566 fUniqueID = next_picture_generation_id();
566 } 567 }
567 return fUniqueID; 568 return fUniqueID;
568 } 569 }
OLDNEW
« no previous file with comments | « src/core/SkBBHFactory.cpp ('k') | src/core/SkPictureRecorder.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698