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

Side by Side Diff: net/disk_cache/simple/simple_util.h

Issue 23819025: Simple Cache: restore the high-res timer (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 7 years, 3 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 | « no previous file | net/disk_cache/simple/simple_util.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 (c) 2013 The Chromium Authors. All rights reserved. 1 // Copyright (c) 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 NET_DISK_CACHE_SIMPLE_SIMPLE_UTIL_H_ 5 #ifndef NET_DISK_CACHE_SIMPLE_SIMPLE_UTIL_H_
6 #define NET_DISK_CACHE_SIMPLE_SIMPLE_UTIL_H_ 6 #define NET_DISK_CACHE_SIMPLE_SIMPLE_UTIL_H_
7 7
8 #include <string> 8 #include <string>
9 9
10 #include "base/basictypes.h" 10 #include "base/basictypes.h"
(...skipping 45 matching lines...) Expand 10 before | Expand all | Expand 10 after
56 // returns the number of bytes in the file. 56 // returns the number of bytes in the file.
57 NET_EXPORT_PRIVATE int64 GetFileSizeFromKeyAndDataSize(const std::string& key, 57 NET_EXPORT_PRIVATE int64 GetFileSizeFromKeyAndDataSize(const std::string& key,
58 int32 data_size); 58 int32 data_size);
59 59
60 // Given the key to an entry, and an offset into a stream on that entry, returns 60 // Given the key to an entry, and an offset into a stream on that entry, returns
61 // the file offset corresponding to |data_offset|. 61 // the file offset corresponding to |data_offset|.
62 NET_EXPORT_PRIVATE int64 GetFileOffsetFromKeyAndDataOffset( 62 NET_EXPORT_PRIVATE int64 GetFileOffsetFromKeyAndDataOffset(
63 const std::string& key, 63 const std::string& key,
64 int data_offset); 64 int data_offset);
65 65
66 // Fills |out_time| with the time the file last modified time. 66 // Fills |out_time| with the time the file last modified time. Unlike the
67 // TODO(gavinp): Remove this function. 67 // functions in platform_file.h, the time resolution is milliseconds.
68 NET_EXPORT_PRIVATE bool GetMTime(const base::FilePath& path, 68 NET_EXPORT_PRIVATE bool GetMTime(const base::FilePath& path,
69 base::Time* out_mtime); 69 base::Time* out_mtime);
70 } // namespace simple_backend 70 } // namespace simple_backend
71 71
72 } // namespace disk_cache 72 } // namespace disk_cache
73 73
74 #endif // NET_DISK_CACHE_SIMPLE_SIMPLE_UTIL_H_ 74 #endif // NET_DISK_CACHE_SIMPLE_SIMPLE_UTIL_H_
OLDNEW
« no previous file with comments | « no previous file | net/disk_cache/simple/simple_util.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698