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

Unified Diff: skia/ext/vector_canvas.h

Issue 8595024: Add OVERRIDE to skia/. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 9 years, 1 month 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 | « no previous file | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: skia/ext/vector_canvas.h
diff --git a/skia/ext/vector_canvas.h b/skia/ext/vector_canvas.h
index aac0400d0d93fede10dff60883265823968800d8..7c5104aaa1a07f2950e33b29e1dd31331c86635e 100644
--- a/skia/ext/vector_canvas.h
+++ b/skia/ext/vector_canvas.h
@@ -1,4 +1,4 @@
-// Copyright (c) 2006-2009 The Chromium Authors. All rights reserved.
+// Copyright (c) 2011 The Chromium Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
@@ -6,6 +6,7 @@
#define SKIA_EXT_VECTOR_CANVAS_H_
#pragma once
+#include "base/compiler_specific.h"
#include "skia/ext/platform_canvas.h"
class SkDevice;
@@ -22,8 +23,8 @@ class SK_API VectorCanvas : public PlatformCanvas {
explicit VectorCanvas(SkDevice* device);
virtual ~VectorCanvas();
- virtual SkBounder* setBounder(SkBounder* bounder);
- virtual SkDrawFilter* setDrawFilter(SkDrawFilter* filter);
+ virtual SkBounder* setBounder(SkBounder* bounder) OVERRIDE;
+ virtual SkDrawFilter* setDrawFilter(SkDrawFilter* filter) OVERRIDE;
private:
// Returns true if the top device is vector based and not bitmap based.
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698