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

Side by Side Diff: skia/ext/platform_device.cc

Issue 7719014: PrintPreview: Printing preview of a PDF on Mac with Skia only previews the last page of the PDF (Closed) Base URL: http://git.chromium.org/git/chromium.git@trunk
Patch Set: '' Created 9 years, 2 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 unified diff | Download patch | Annotate | Revision Log
« no previous file with comments | « skia/ext/platform_device.h ('k') | webkit/plugins/ppapi/ppapi_plugin_instance.h » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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 "skia/ext/platform_device.h" 6 #include "skia/ext/platform_device.h"
6 7
7 #include "third_party/skia/include/core/SkMetaData.h" 8 #include "third_party/skia/include/core/SkMetaData.h"
8 9
9 namespace skia { 10 namespace skia {
10 11
11 namespace { 12 namespace {
13
12 const char* kDevicePlatformBehaviour = "CrDevicePlatformBehaviour"; 14 const char* kDevicePlatformBehaviour = "CrDevicePlatformBehaviour";
15 const char* kDraftModeKey = "CrDraftMode";
16
17 #if defined(OS_MACOSX) || defined(OS_WIN)
18 const char* kIsPreviewMetafileKey = "CrIsPreviewMetafile";
19 #endif
20
21 void SetBoolMetaData(const SkCanvas& canvas, const char* key, bool value) {
22 SkMetaData& meta = skia::getMetaData(canvas);
23 meta.setBool(key, value);
13 } 24 }
14 25
26 bool GetBoolMetaData(const SkCanvas& canvas, const char* key) {
27 bool value;
28 SkMetaData& meta = skia::getMetaData(canvas);
29 if (!meta.findBool(key, &value))
30 value = false;
31 return value;
32 }
33
34 } // namespace
35
15 void SetPlatformDevice(SkDevice* device, PlatformDevice* platform_behaviour) { 36 void SetPlatformDevice(SkDevice* device, PlatformDevice* platform_behaviour) {
16 SkMetaData& meta_data = device->getMetaData(); 37 SkMetaData& meta_data = device->getMetaData();
17 meta_data.setPtr(kDevicePlatformBehaviour, platform_behaviour); 38 meta_data.setPtr(kDevicePlatformBehaviour, platform_behaviour);
18 } 39 }
19 40
20 PlatformDevice* GetPlatformDevice(SkDevice* device) { 41 PlatformDevice* GetPlatformDevice(SkDevice* device) {
21 SkMetaData& meta_data = device->getMetaData(); 42 SkMetaData& meta_data = device->getMetaData();
22 PlatformDevice* device_behaviour = NULL; 43 PlatformDevice* device_behaviour = NULL;
23 if (meta_data.findPtr(kDevicePlatformBehaviour, 44 if (meta_data.findPtr(kDevicePlatformBehaviour,
24 reinterpret_cast<void**>(&device_behaviour))) 45 reinterpret_cast<void**>(&device_behaviour)))
25 return device_behaviour; 46 return device_behaviour;
26 47
27 return NULL; 48 return NULL;
28 } 49 }
29 50
51 SkMetaData& getMetaData(const SkCanvas& canvas) {
52 SkDevice* device = canvas.getDevice();
53 DCHECK(device != NULL);
54 return device->getMetaData();
55 }
56
57 void SetIsDraftMode(const SkCanvas& canvas, bool draft_mode) {
58 SetBoolMetaData(canvas, kDraftModeKey, draft_mode);
59 }
60
61 bool IsDraftMode(const SkCanvas& canvas) {
62 return GetBoolMetaData(canvas, kDraftModeKey);
63 }
64
65 #if defined(OS_MACOSX) || defined(OS_WIN)
66 void SetIsPreviewMetafile(const SkCanvas& canvas, bool is_preview) {
67 SetBoolMetaData(canvas, kIsPreviewMetafileKey, is_preview);
68 }
69
70 bool IsPreviewMetafile(const SkCanvas& canvas) {
71 return GetBoolMetaData(canvas, kIsPreviewMetafileKey);
72 }
73 #endif
74
30 bool PlatformDevice::IsNativeFontRenderingAllowed() { 75 bool PlatformDevice::IsNativeFontRenderingAllowed() {
31 return true; 76 return true;
32 } 77 }
33 78
34 bool PlatformDevice::AlphaBlendUsed() const { 79 bool PlatformDevice::AlphaBlendUsed() const {
35 return false; 80 return false;
36 } 81 }
37 82
38 } // namespace skia 83 } // namespace skia
OLDNEW
« no previous file with comments | « skia/ext/platform_device.h ('k') | webkit/plugins/ppapi/ppapi_plugin_instance.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698