[sql] Prevent nChildren overrun decoding interior pages in recover.c.
[chromium-blink-merge.git] / skia / ext / vector_canvas.h
blob673becc8bf215fcdde0ead8cfa6c2a640c2e1496
1 // Copyright (c) 2011 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file.
5 #ifndef SKIA_EXT_VECTOR_CANVAS_H_
6 #define SKIA_EXT_VECTOR_CANVAS_H_
8 #include "base/compiler_specific.h"
9 #include "skia/ext/platform_canvas.h"
11 // This was a specialization of PlatformCanvas, but all necessary functionality
12 // has been subsumed by just SkCanvas and a specialized device (PDF or EMF).
13 // Future evolution goal is to replace this notion (canvas+device) with
14 // an updated version of SkDocument, which will have explicit APIs for margins.
15 // At that point, this class (and header) will be removed entirely.
17 namespace skia {
18 typedef PlatformCanvas VectorCanvas;
19 } // namespace skia
21 #endif // SKIA_EXT_VECTOR_CANVAS_H_