OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:TimedCache
(Results
1 - 4
of
4
) sorted by null
/external/chromium_org/chrome/browser/net/
timed_cache.h
21
class
TimedCache
{
23
explicit
TimedCache
(const base::TimeDelta& max_duration);
24
~
TimedCache
();
43
DISALLOW_COPY_AND_ASSIGN(
TimedCache
);
timed_cache.cc
11
TimedCache
::
TimedCache
(const base::TimeDelta& max_duration)
17
TimedCache
::~
TimedCache
() {}
19
bool
TimedCache
::WasRecentlySeen(const GURL& url) {
33
void
TimedCache
::SetRecentlySeen(const GURL& url) {
connect_interceptor.h
36
// Provide access to local class
TimedCache
for testing.
40
TimedCache
timed_cache_;
connect_interceptor_unittest.cc
12
// These tests are all focused ConnectInterceptor::
TimedCache
.
15
ConnectInterceptor::
TimedCache
cache(base::TimeDelta::FromHours(1));
60
ConnectInterceptor::
TimedCache
cache(base::TimeDelta::FromMilliseconds(1));
Completed in 27 milliseconds