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

Side by Side Diff: experimental/PdfViewer/pdfparser/native/pdfapi/SkPdfActionDictionary_autogen.h

Issue 23361009: pdfviewer: code cleanup - add licence on files, make replace __DEFINE__foo with foo_DEFINED to matc… (Closed) Base URL: http://skia.googlecode.com/svn/trunk/
Patch Set: Created 7 years, 4 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
OLDNEW
1 #ifndef __DEFINED__SkPdfActionDictionary 1 /*
2 #define __DEFINED__SkPdfActionDictionary 2 * Copyright 2013 Google Inc.
3 3
4 * Use of this source code is governed by a BSD-style license that can be
5 * found in the LICENSE file.
6 */
7
8 #ifndef SkPdfActionDictionary_DEFINED
9 #define SkPdfActionDictionary_DEFINED
10
4 #include "SkPdfDictionary_autogen.h" 11 #include "SkPdfDictionary_autogen.h"
5 12
6 // Entries common to all action dictionaries 13 // Entries common to all action dictionaries
7 class SkPdfActionDictionary : public SkPdfDictionary { 14 class SkPdfActionDictionary : public SkPdfDictionary {
8 public: 15 public:
9 public: 16 public:
10 SkPdfActionDictionary* asActionDictionary() {return this;} 17 SkPdfActionDictionary* asActionDictionary() {return this;}
11 const SkPdfActionDictionary* asActionDictionary() const {return this;} 18 const SkPdfActionDictionary* asActionDictionary() const {return this;}
12 19
13 private: 20 private:
(...skipping 501 matching lines...) Expand 10 before | Expand all | Expand 10 after
515 bool has_Type() const; 522 bool has_Type() const;
516 SkString S(SkPdfNativeDoc* doc); 523 SkString S(SkPdfNativeDoc* doc);
517 bool has_S() const; 524 bool has_S() const;
518 bool isNextADictionary(SkPdfNativeDoc* doc); 525 bool isNextADictionary(SkPdfNativeDoc* doc);
519 SkPdfDictionary* getNextAsDictionary(SkPdfNativeDoc* doc); 526 SkPdfDictionary* getNextAsDictionary(SkPdfNativeDoc* doc);
520 bool isNextAArray(SkPdfNativeDoc* doc); 527 bool isNextAArray(SkPdfNativeDoc* doc);
521 SkPdfArray* getNextAsArray(SkPdfNativeDoc* doc); 528 SkPdfArray* getNextAsArray(SkPdfNativeDoc* doc);
522 bool has_Next() const; 529 bool has_Next() const;
523 }; 530 };
524 531
525 #endif // __DEFINED__NATIVE_SkPdfActionDictionary 532 #endif // SkPdfActionDictionary_DEFINED
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698