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

Side by Side Diff: cc/resources/ui_resource_bitmap.cc

Issue 18191020: UI Resource Manager (Closed) Base URL: https://src.chromium.org/chrome/trunk/src/
Patch Set: Added DCHECK of resource queue size to PushPropertiesTo Created 7 years, 4 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
« no previous file with comments | « cc/resources/ui_resource_bitmap.h ('k') | cc/resources/ui_resource_client.h » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Property Changes:
Added: svn:eol-style
+ LF
OLDNEW
(Empty)
1 // Copyright 2013 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 "cc/resources/ui_resource_bitmap.h"
6
7 #include "base/memory/scoped_ptr.h"
8
9 namespace cc {
10
11 scoped_refptr<UIResourceBitmap>
12 UIResourceBitmap::Create(uint8_t* pixels,
13 UIResourceFormat format,
14 gfx::Size size) {
15 scoped_refptr<UIResourceBitmap> ret = new UIResourceBitmap();
16 ret->pixels_ = scoped_ptr<uint8_t[]>(pixels);
17 ret->format_ = format;
18 ret->size_ = size;
19
20 return ret;
21 }
22
23 UIResourceBitmap::UIResourceBitmap() {}
24 UIResourceBitmap::~UIResourceBitmap() {}
25
26 } // namespace cc
OLDNEW
« no previous file with comments | « cc/resources/ui_resource_bitmap.h ('k') | cc/resources/ui_resource_client.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698