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

Unified Diff: skia/ext/vector_device.h

Issue 14903: Reverting 7318. (Closed) Base URL: svn://chrome-svn/chrome/trunk/src/
Patch Set: Created 12 years 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 | « skia/ext/vector_canvas.cc ('k') | skia/ext/vector_device.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: skia/ext/vector_device.h
===================================================================
--- skia/ext/vector_device.h (revision 7318)
+++ skia/ext/vector_device.h (working copy)
@@ -2,10 +2,9 @@
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
-#ifndef VectorDevice_h
-#define VectorDevice_h
+#ifndef SKIA_EXT_VECTOR_DEVICE_H_
+#define SKIA_EXT_VECTOR_DEVICE_H_
-#include "base/basictypes.h"
#include "skia/ext/platform_device_win.h"
#include "SkMatrix.h"
#include "SkRegion.h"
@@ -110,10 +109,12 @@
// Previously selected pen before the current drawing.
HGDIOBJ previous_pen_;
- DISALLOW_COPY_AND_ASSIGN(VectorDevice);
+ // Copy & assign are not supported.
+ VectorDevice(const VectorDevice&);
+ const VectorDevice& operator=(const VectorDevice&);
};
} // namespace skia
-#endif // VectorDevice_h
+#endif // SKIA_EXT_VECTOR_DEVICE_H_
« no previous file with comments | « skia/ext/vector_canvas.cc ('k') | skia/ext/vector_device.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698