OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:InstantIOContext
(Results
1 - 11
of
11
) 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
...]
iframe_source_unittest.cc
74
//
InstantIOContext
needs to be created on the UI thread and have everything
132
instant_io_context_ = new
InstantIOContext
;
133
InstantIOContext
::SetUserDataOnIO(&resource_context_, instant_io_context_);
134
InstantIOContext
::AddInstantProcessOnIO(instant_io_context_,
153
scoped_refptr<
InstantIOContext
> instant_io_context_;
instant_service.h
31
class
InstantIOContext
;
179
scoped_refptr<
InstantIOContext
> instant_io_context_;
iframe_source.cc
42
return
InstantIOContext
::ShouldServiceRequest(request) &&
instant_service.cc
92
instant_io_context_ = new
InstantIOContext
();
97
base::Bind(&
InstantIOContext
::SetUserDataOnIO,
140
base::Bind(&
InstantIOContext
::AddInstantProcessOnIO,
202
base::Bind(&
InstantIOContext
::ClearInstantProcessesOnIO,
299
base::Bind(&
InstantIOContext
::RemoveInstantProcessOnIO,
local_ntp_source.cc
170
if (!
InstantIOContext
::ShouldServiceRequest(request))
/external/chromium_org/chrome/browser/ui/webui/ntp/
thumbnail_source.cc
70
return
InstantIOContext
::ShouldServiceRequest(request);
thumbnail_list_source.cc
117
return
InstantIOContext
::ShouldServiceRequest(request);
/external/chromium_org/chrome/browser/ui/webui/
theme_source.cc
130
return
InstantIOContext
::ShouldServiceRequest(request);
favicon_source.cc
138
return
InstantIOContext
::ShouldServiceRequest(request);
Completed in 670 milliseconds