Track webapp meta tag adoption
[chromium-blink-merge.git] / cc / resources / resource.cc
blobc97db7fb872233eef906986bf4f2c980bf7362d3
1 // Copyright 2012 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 #include "cc/resources/resource.h"
7 namespace cc {
9 size_t Resource::bytes() const {
10 if (size_.IsEmpty())
11 return 0;
13 return MemorySizeBytes(size_, format_);
16 size_t Resource::MemorySizeBytes(gfx::Size size, ResourceFormat format) {
17 return ResourceProvider::BytesPerPixel(format) * size.width() * size.height();
20 } // namespace cc