OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:InstantIOContext
(Results
1 - 10
of
10
) sorted by null
/external/chromium_org/chrome/browser/search/
instant_io_context.h
26
class
InstantIOContext
: public base::RefCountedThreadSafe<
InstantIOContext
> {
28
InstantIOContext
();
31
// but accessed by
InstantIOContext
.
38
scoped_refptr<
InstantIOContext
> instant_io_context);
43
scoped_refptr<
InstantIOContext
> instant_io_context,
46
scoped_refptr<
InstantIOContext
> instant_io_context,
49
scoped_refptr<
InstantIOContext
> instant_io_context);
56
virtual ~
InstantIOContext
();
59
friend class base::RefCountedThreadSafe<
InstantIOContext
>;
[
all
...]
instant_io_context.cc
18
InstantIOContext
* GetDataForResourceContext(
21
return base::UserDataAdapter<
InstantIOContext
>::Get(
22
context,
InstantIOContext
::kInstantIOContextKeyName);
25
InstantIOContext
* GetDataForRequest(const net::URLRequest* request) {
36
const char
InstantIOContext
::kInstantIOContextKeyName[] = "instant_io_context";
38
InstantIOContext
::
InstantIOContext
() {
39
// The
InstantIOContext
is created on the UI thread but is accessed
44
InstantIOContext
::~
InstantIOContext
() {
[
all
...]
instant_service.h
29
class
InstantIOContext
;
154
scoped_refptr<
InstantIOContext
> instant_io_context_;
iframe_source_unittest.cc
73
//
InstantIOContext
needs to be created on the UI thread and have everything
128
instant_io_context_ = new
InstantIOContext
;
129
InstantIOContext
::SetUserDataOnIO(&resource_context_, instant_io_context_);
130
InstantIOContext
::AddInstantProcessOnIO(instant_io_context_,
149
scoped_refptr<
InstantIOContext
> instant_io_context_;
instant_service.cc
77
instant_io_context_ = new
InstantIOContext
();
82
base::Bind(&
InstantIOContext
::SetUserDataOnIO,
114
base::Bind(&
InstantIOContext
::AddInstantProcessOnIO,
176
base::Bind(&
InstantIOContext
::ClearInstantProcessesOnIO,
226
base::Bind(&
InstantIOContext
::RemoveInstantProcessOnIO,
iframe_source.cc
43
return
InstantIOContext
::ShouldServiceRequest(request) &&
local_ntp_source.cc
173
if (!
InstantIOContext
::ShouldServiceRequest(request))
/external/chromium_org/chrome/browser/ui/webui/ntp/
thumbnail_source.cc
65
return
InstantIOContext
::ShouldServiceRequest(request);
/external/chromium_org/chrome/browser/ui/webui/
theme_source.cc
128
return
InstantIOContext
::ShouldServiceRequest(request);
favicon_source.cc
138
return
InstantIOContext
::ShouldServiceRequest(request);
Completed in 2434 milliseconds