OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
defs:UrlInfo
(Results
1 - 3
of
3
) sorted by null
/external/chromium_org/chrome/browser/net/
url_info_unittest.cc
5
// Single threaded tests of
UrlInfo
functionality.
23
typedef chrome_browser_net::
UrlInfo
UrlInfo
;
25
// Cycle throught the states held by a
UrlInfo
instance, and check to see that
29
UrlInfo
info_practice, info;
36
info_practice.SetQueuedState(
UrlInfo
::UNIT_TEST_MOTIVATED);
45
info.SetQueuedState(
UrlInfo
::UNIT_TEST_MOTIVATED);
55
UrlInfo
::get_cache_expiration().InMilliseconds());
65
info.SetQueuedState(
UrlInfo
::UNIT_TEST_MOTIVATED);
88
// situation, we divert the sequence of states a
UrlInfo
instance move
[
all
...]
url_info.cc
67
int
UrlInfo
::sequence_counter = 1;
69
UrlInfo
::
UrlInfo
()
79
UrlInfo
::~
UrlInfo
() {}
81
bool
UrlInfo
::NeedsDnsUpdate() {
103
void
UrlInfo
::set_cache_expiration(TimeDelta time) {
108
TimeDelta
UrlInfo
::get_cache_expiration() {
112
void
UrlInfo
::SetQueuedState(ResolutionMotivation motivation) {
122
void
UrlInfo
::SetAssignedState()
[
all
...]
url_info.h
5
// A
UrlInfo
object is used to store prediction related information about a host
12
//
UrlInfo
objects are also used to describe frames, and additional instances
31
class
UrlInfo
{
67
typedef std::vector<
UrlInfo
> UrlInfoTable;
73
//
UrlInfo
are usually made by the default constructor during
75
UrlInfo
();
77
~
UrlInfo
();
182
// DISALLOW_COPY_AND_ASSIGN(
UrlInfo
);
Completed in 6380 milliseconds