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

Side by Side Diff: blimp/client/app/blimp_discardable_memory_allocator.h

Issue 1852953002: Fix a bunch of IWYU violators that don't include scoped_ptr.h (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: address comment Created 4 years, 8 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 | « ash/wm/gestures/long_press_affordance_handler.h ('k') | blimp/net/blimp_message_multiplexer.h » ('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 2016 The Chromium Authors. All rights reserved. 1 // Copyright 2016 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 BLIMP_CLIENT_APP_BLIMP_DISCARDABLE_MEMORY_ALLOCATOR_H_ 5 #ifndef BLIMP_CLIENT_APP_BLIMP_DISCARDABLE_MEMORY_ALLOCATOR_H_
6 #define BLIMP_CLIENT_APP_BLIMP_DISCARDABLE_MEMORY_ALLOCATOR_H_ 6 #define BLIMP_CLIENT_APP_BLIMP_DISCARDABLE_MEMORY_ALLOCATOR_H_
7 7
8 #include <list> 8 #include <list>
9 9
10 #include "base/macros.h" 10 #include "base/macros.h"
11 #include "base/memory/discardable_memory_allocator.h" 11 #include "base/memory/discardable_memory_allocator.h"
12 #include "base/memory/scoped_ptr.h"
12 #include "base/synchronization/lock.h" 13 #include "base/synchronization/lock.h"
13 14
14 namespace blimp { 15 namespace blimp {
15 namespace client { 16 namespace client {
16 17
17 // TODO(khushalsagar): See if we can share this implementation with html_viewer. 18 // TODO(khushalsagar): See if we can share this implementation with html_viewer.
18 // A discardable memory allocator which will unallocate chunks on new 19 // A discardable memory allocator which will unallocate chunks on new
19 // allocations or as old chunks are unlocked. 20 // allocations or as old chunks are unlocked.
20 class BlimpDiscardableMemoryAllocator : 21 class BlimpDiscardableMemoryAllocator :
21 public base::DiscardableMemoryAllocator { 22 public base::DiscardableMemoryAllocator {
(...skipping 50 matching lines...) Expand 10 before | Expand all | Expand 10 after
72 // recently accessed chunks. 73 // recently accessed chunks.
73 MemoryChunkList live_unlocked_chunks_; 74 MemoryChunkList live_unlocked_chunks_;
74 75
75 DISALLOW_COPY_AND_ASSIGN(BlimpDiscardableMemoryAllocator); 76 DISALLOW_COPY_AND_ASSIGN(BlimpDiscardableMemoryAllocator);
76 }; 77 };
77 78
78 } // namespace client 79 } // namespace client
79 } // namespace blimp 80 } // namespace blimp
80 81
81 #endif // BLIMP_CLIENT_APP_BLIMP_DISCARDABLE_MEMORY_ALLOCATOR_H_ 82 #endif // BLIMP_CLIENT_APP_BLIMP_DISCARDABLE_MEMORY_ALLOCATOR_H_
OLDNEW
« no previous file with comments | « ash/wm/gestures/long_press_affordance_handler.h ('k') | blimp/net/blimp_message_multiplexer.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698