OLD | NEW |
---|---|
(Empty) | |
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 | |
3 // found in the LICENSE file. | |
4 | |
5 #ifndef IOS_CHROME_BROWSER_SNAPSHOTS_SNAPSHOT_CACHE_INTERNAL_H_ | |
6 #define IOS_CHROME_BROWSER_SNAPSHOTS_SNAPSHOT_CACHE_INTERNAL_H_ | |
7 | |
sdefresne
2016/02/25 13:26:47
#import "ios/chrome/browser/snapshots/snapshot_cac
| |
8 namespace base { | |
9 class FilePath; | |
10 } | |
11 | |
12 @class NSString; | |
13 | |
14 @interface SnapshotCache (Internal) | |
15 // Returns filepath to the color snapshot of |sessionID|. | |
16 + (base::FilePath)imagePathForSessionID:(NSString*)sessionID; | |
17 // Returns filepath to the greyscale snapshot of |sessionID|. | |
18 + (base::FilePath)greyImagePathForSessionID:(NSString*)sessionID; | |
19 // Returns whether the snapshots are cached in a LRU cache. | |
20 - (BOOL)usesLRUCache; | |
21 // Returns whether the in-memory cache (as opposed to the on-disk cache) is | |
22 // enabled. | |
23 - (BOOL)inMemoryCacheIsEnabled; | |
24 @end | |
25 | |
26 #endif // IOS_CHROME_BROWSER_SNAPSHOTS_SNAPSHOT_CACHE_INTERNAL_H_ | |
OLD | NEW |