chrome.windows.create should return new window id in Guest mode
[chromium-blink-merge.git] / cc / resources / resource.cc
blob9bbcd4f498b96628507ce6da25eed352b932f009
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_);
17 } // namespace cc