| OLD | NEW |
| 1 // Copyright (c) 2011 The Chromium Authors. All rights reserved. | 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 | 2 // Use of this source code is governed by a BSD-style license that can be |
| 3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
| 4 | 4 |
| 5 #include "base/logging.h" | 5 #include "base/logging.h" |
| 6 #include "skia/ext/platform_device.h" | 6 #include "skia/ext/platform_device.h" |
| 7 | 7 |
| 8 #include "third_party/skia/include/core/SkMetaData.h" | 8 #include "third_party/skia/include/core/SkMetaData.h" |
| 9 | 9 |
| 10 namespace skia { | 10 namespace skia { |
| (...skipping 15 matching lines...) Expand all Loading... |
| 26 bool GetBoolMetaData(const SkCanvas& canvas, const char* key) { | 26 bool GetBoolMetaData(const SkCanvas& canvas, const char* key) { |
| 27 bool value; | 27 bool value; |
| 28 SkMetaData& meta = skia::getMetaData(canvas); | 28 SkMetaData& meta = skia::getMetaData(canvas); |
| 29 if (!meta.findBool(key, &value)) | 29 if (!meta.findBool(key, &value)) |
| 30 value = false; | 30 value = false; |
| 31 return value; | 31 return value; |
| 32 } | 32 } |
| 33 | 33 |
| 34 } // namespace | 34 } // namespace |
| 35 | 35 |
| 36 void SetPlatformDevice(SkDevice* device, PlatformDevice* platform_behaviour) { | 36 void SetPlatformDevice(SkBaseDevice* device, PlatformDevice* platform_behaviour)
{ |
| 37 SkMetaData& meta_data = device->getMetaData(); | 37 SkMetaData& meta_data = device->getMetaData(); |
| 38 meta_data.setPtr(kDevicePlatformBehaviour, platform_behaviour); | 38 meta_data.setPtr(kDevicePlatformBehaviour, platform_behaviour); |
| 39 } | 39 } |
| 40 | 40 |
| 41 PlatformDevice* GetPlatformDevice(SkDevice* device) { | 41 PlatformDevice* GetPlatformDevice(SkBaseDevice* device) { |
| 42 if (device) { | 42 if (device) { |
| 43 SkMetaData& meta_data = device->getMetaData(); | 43 SkMetaData& meta_data = device->getMetaData(); |
| 44 PlatformDevice* device_behaviour = NULL; | 44 PlatformDevice* device_behaviour = NULL; |
| 45 if (meta_data.findPtr(kDevicePlatformBehaviour, | 45 if (meta_data.findPtr(kDevicePlatformBehaviour, |
| 46 reinterpret_cast<void**>(&device_behaviour))) | 46 reinterpret_cast<void**>(&device_behaviour))) |
| 47 return device_behaviour; | 47 return device_behaviour; |
| 48 } | 48 } |
| 49 return NULL; | 49 return NULL; |
| 50 } | 50 } |
| 51 | 51 |
| 52 SkMetaData& getMetaData(const SkCanvas& canvas) { | 52 SkMetaData& getMetaData(const SkCanvas& canvas) { |
| 53 SkDevice* device = canvas.getDevice(); | 53 SkBaseDevice* device = canvas.getDevice(); |
| 54 DCHECK(device != NULL); | 54 DCHECK(device != NULL); |
| 55 return device->getMetaData(); | 55 return device->getMetaData(); |
| 56 } | 56 } |
| 57 | 57 |
| 58 void SetIsDraftMode(const SkCanvas& canvas, bool draft_mode) { | 58 void SetIsDraftMode(const SkCanvas& canvas, bool draft_mode) { |
| 59 SetBoolMetaData(canvas, kDraftModeKey, draft_mode); | 59 SetBoolMetaData(canvas, kDraftModeKey, draft_mode); |
| 60 } | 60 } |
| 61 | 61 |
| 62 bool IsDraftMode(const SkCanvas& canvas) { | 62 bool IsDraftMode(const SkCanvas& canvas) { |
| 63 return GetBoolMetaData(canvas, kDraftModeKey); | 63 return GetBoolMetaData(canvas, kDraftModeKey); |
| 64 } | 64 } |
| 65 | 65 |
| 66 #if defined(OS_MACOSX) || defined(OS_WIN) | 66 #if defined(OS_MACOSX) || defined(OS_WIN) |
| 67 void SetIsPreviewMetafile(const SkCanvas& canvas, bool is_preview) { | 67 void SetIsPreviewMetafile(const SkCanvas& canvas, bool is_preview) { |
| 68 SetBoolMetaData(canvas, kIsPreviewMetafileKey, is_preview); | 68 SetBoolMetaData(canvas, kIsPreviewMetafileKey, is_preview); |
| 69 } | 69 } |
| 70 | 70 |
| 71 bool IsPreviewMetafile(const SkCanvas& canvas) { | 71 bool IsPreviewMetafile(const SkCanvas& canvas) { |
| 72 return GetBoolMetaData(canvas, kIsPreviewMetafileKey); | 72 return GetBoolMetaData(canvas, kIsPreviewMetafileKey); |
| 73 } | 73 } |
| 74 #endif | 74 #endif |
| 75 | 75 |
| 76 bool PlatformDevice::SupportsPlatformPaint() { | 76 bool PlatformDevice::SupportsPlatformPaint() { |
| 77 return true; | 77 return true; |
| 78 } | 78 } |
| 79 | 79 |
| 80 } // namespace skia | 80 } // namespace skia |
| OLD | NEW |