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

Side by Side Diff: sky/viewer/cc/web_external_bitmap_impl.cc

Issue 752683002: Break Sky's dependency on cc (Closed) Base URL: git@github.com:domokit/mojo.git@master
Patch Set: Created 6 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 unified diff | Download patch
OLDNEW
(Empty)
1 // Copyright 2014 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.
4
5 #include "sky/viewer/cc/web_external_bitmap_impl.h"
6
7 #include "base/memory/shared_memory.h"
8
9 namespace sky_viewer_cc {
10
11 namespace {
12
13 SharedMemoryAllocationFunction g_memory_allocator;
14
15 } // namespace
16
17 void SetSharedMemoryAllocationFunction(
18 SharedMemoryAllocationFunction allocator) {
19 g_memory_allocator = allocator;
20 }
21
22 WebExternalBitmapImpl::WebExternalBitmapImpl() {
23 }
24
25 WebExternalBitmapImpl::~WebExternalBitmapImpl() {
26 }
27
28 void WebExternalBitmapImpl::setSize(blink::WebSize size) {
29 if (size != size_) {
30 size_t byte_size = size.width * size.height * 4;
31 shared_memory_ = g_memory_allocator(byte_size);
32 if (shared_memory_)
33 shared_memory_->Map(byte_size);
34 size_ = size;
35 }
36 }
37
38 blink::WebSize WebExternalBitmapImpl::size() {
39 return size_;
40 }
41
42 uint8* WebExternalBitmapImpl::pixels() {
43 return static_cast<uint8*>(shared_memory_->memory());
44 }
45
46 } // namespace sky_viewer_cc
OLDNEW
« no previous file with comments | « sky/viewer/cc/web_external_bitmap_impl.h ('k') | sky/viewer/cc/web_external_texture_layer_impl.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698