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

Unified Diff: src/pdf/SkPDFTypes.h

Issue 1037793002: C++11 override should now be supported by all of {bots,Chrome,Android,Mozilla} (Closed) Base URL: https://skia.googlesource.com/skia@master
Patch Set: git cl web Created 5 years, 9 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « src/pdf/SkPDFStream.h ('k') | src/pipe/SkGPipeRead.cpp » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: src/pdf/SkPDFTypes.h
diff --git a/src/pdf/SkPDFTypes.h b/src/pdf/SkPDFTypes.h
index 3bc606509cb92017e4b64fda7bb3d943db249aa5..8eea7f8a6b45a57ac3106f37346ce69cb561cd41 100644
--- a/src/pdf/SkPDFTypes.h
+++ b/src/pdf/SkPDFTypes.h
@@ -65,8 +65,8 @@ public:
virtual ~SkPDFObjRef();
// The SkPDFObject interface.
- virtual void emitObject(SkWStream* stream, SkPDFCatalog* catalog) SK_OVERRIDE;
- virtual void addResources(SkPDFCatalog*) const SK_OVERRIDE;
+ virtual void emitObject(SkWStream* stream, SkPDFCatalog* catalog) override;
+ virtual void addResources(SkPDFCatalog*) const override;
private:
SkAutoTUnref<SkPDFObject> fObj;
@@ -89,7 +89,7 @@ public:
virtual ~SkPDFInt();
// The SkPDFObject interface.
- virtual void emitObject(SkWStream* stream, SkPDFCatalog* catalog) SK_OVERRIDE;
+ virtual void emitObject(SkWStream* stream, SkPDFCatalog* catalog) override;
private:
int32_t fValue;
@@ -112,7 +112,7 @@ public:
virtual ~SkPDFBool();
// The SkPDFObject interface.
- virtual void emitObject(SkWStream* stream, SkPDFCatalog* catalog) SK_OVERRIDE;
+ virtual void emitObject(SkWStream* stream, SkPDFCatalog* catalog) override;
private:
bool fValue;
@@ -137,7 +137,7 @@ public:
static void Append(SkScalar value, SkWStream* stream);
// The SkPDFObject interface.
- virtual void emitObject(SkWStream* stream, SkPDFCatalog* catalog) SK_OVERRIDE;
+ virtual void emitObject(SkWStream* stream, SkPDFCatalog* catalog) override;
private:
SkScalar fValue;
@@ -169,7 +169,7 @@ public:
virtual ~SkPDFString();
// The SkPDFObject interface.
- virtual void emitObject(SkWStream* stream, SkPDFCatalog* catalog) SK_OVERRIDE;
+ virtual void emitObject(SkWStream* stream, SkPDFCatalog* catalog) override;
static SkString FormatString(const char* input, size_t len);
static SkString FormatString(const uint16_t* input, size_t len,
@@ -203,7 +203,7 @@ public:
bool operator==(const SkPDFName& b) const;
// The SkPDFObject interface.
- virtual void emitObject(SkWStream* stream, SkPDFCatalog* catalog) SK_OVERRIDE;
+ virtual void emitObject(SkWStream* stream, SkPDFCatalog* catalog) override;
private:
static const size_t kMaxLen = 127;
@@ -229,8 +229,8 @@ public:
virtual ~SkPDFArray();
// The SkPDFObject interface.
- virtual void emitObject(SkWStream* stream, SkPDFCatalog* catalog) SK_OVERRIDE;
- virtual void addResources(SkPDFCatalog*) const SK_OVERRIDE;
+ virtual void emitObject(SkWStream* stream, SkPDFCatalog* catalog) override;
+ virtual void addResources(SkPDFCatalog*) const override;
/** The size of the array.
*/
@@ -301,8 +301,8 @@ public:
virtual ~SkPDFDict();
// The SkPDFObject interface.
- virtual void emitObject(SkWStream* stream, SkPDFCatalog* catalog) SK_OVERRIDE;
- virtual void addResources(SkPDFCatalog*) const SK_OVERRIDE;
+ virtual void emitObject(SkWStream* stream, SkPDFCatalog* catalog) override;
+ virtual void addResources(SkPDFCatalog*) const override;
/** The size of the dictionary.
*/
« no previous file with comments | « src/pdf/SkPDFStream.h ('k') | src/pipe/SkGPipeRead.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698