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

Side by Side Diff: skia/ext/SkDiscardableMemory_chrome.h

Issue 24988003: Refactor DiscardableMemory for the upcoming DiscardableMemoryAllocator. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Fix linux clang build Created 7 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 | « base/memory/discardable_memory_unittest.cc ('k') | skia/ext/SkDiscardableMemory_chrome.cc » ('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 2013 The Chromium Authors. All rights reserved. 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 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 #ifndef SKIA_EXT_SK_DISCARDABLE_MEMORY_CHROME_H_ 5 #ifndef SKIA_EXT_SK_DISCARDABLE_MEMORY_CHROME_H_
6 #define SKIA_EXT_SK_DISCARDABLE_MEMORY_CHROME_H_ 6 #define SKIA_EXT_SK_DISCARDABLE_MEMORY_CHROME_H_
7 7
8 #include "base/memory/discardable_memory.h" 8 #include "base/memory/discardable_memory.h"
9 #include "base/memory/scoped_ptr.h" 9 #include "base/memory/scoped_ptr.h"
10 #include "third_party/skia/src/core/SkDiscardableMemory.h" 10 #include "third_party/skia/src/core/SkDiscardableMemory.h"
11 11
12 // This class implements the SkDiscardableMemory interface using 12 // This class implements the SkDiscardableMemory interface using
13 // base::DiscardableMemory. 13 // base::DiscardableMemory.
14 class SK_API SkDiscardableMemoryChrome : public SkDiscardableMemory { 14 class SK_API SkDiscardableMemoryChrome : public SkDiscardableMemory {
15 public: 15 public:
16 SkDiscardableMemoryChrome();
17 virtual ~SkDiscardableMemoryChrome(); 16 virtual ~SkDiscardableMemoryChrome();
18 17
19 // Initialize the SkDiscardableMemoryChrome object and lock the memory. 18 // SkDiscardableMemory:
20 // Returns true on success. No memory is allocated if this call returns
21 // false. This call should only be called once.
22 bool InitializeAndLock(size_t bytes);
23
24 // Implementation of SkDiscardableMemory interface.
25 virtual bool lock() OVERRIDE; 19 virtual bool lock() OVERRIDE;
26 virtual void* data() OVERRIDE; 20 virtual void* data() OVERRIDE;
27 virtual void unlock() OVERRIDE; 21 virtual void unlock() OVERRIDE;
28 22
29 private: 23 private:
24 friend class SkDiscardableMemory;
25
26 SkDiscardableMemoryChrome(scoped_ptr<base::DiscardableMemory> memory);
27
30 scoped_ptr<base::DiscardableMemory> discardable_; 28 scoped_ptr<base::DiscardableMemory> discardable_;
31 }; 29 };
32 30
33 #endif // SKIA_EXT_SK_DISCARDABLE_MEMORY_CHROME_H_ 31 #endif // SKIA_EXT_SK_DISCARDABLE_MEMORY_CHROME_H_
OLDNEW
« no previous file with comments | « base/memory/discardable_memory_unittest.cc ('k') | skia/ext/SkDiscardableMemory_chrome.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698