/external/chromium_org/chrome/test/base/ |
testing_io_thread_state.h | 11 class IOThread; 15 // Convenience class for creating an IOThread object in unittests. 25 IOThread* io_thread_state() { return io_thread_state_.get(); } 31 scoped_ptr<IOThread> io_thread_state_;
|
testing_browser_process.h | 23 class IOThread; 66 virtual IOThread* io_thread() OVERRIDE; 134 void SetIOThread(IOThread* io_thread); 176 IOThread* io_thread_;
|
testing_io_thread_state.cc | 42 // Needed by IOThread constructor. 48 new IOThread(TestingBrowserProcess::GetGlobal()->local_state(), 64 // Remove all the local IOThread state. 84 io_thread_state_->SetGlobalsForTesting(new IOThread::Globals());
|
testing_browser_process.cc | 115 IOThread* TestingBrowserProcess::io_thread() { 415 void TestingBrowserProcess::SetIOThread(IOThread* io_thread) {
|
/external/chromium_org/chrome/browser/metrics/ |
network_stats_uploader.cc | 29 IOThread* io_thread = g_browser_process->io_thread();
|
/external/chromium_org/chrome/browser/ |
io_thread.cc | 113 // The IOThread object must outlive any tasks posted to the IO thread before the 169 TRACE_EVENT0("startup", "IOThread::CreateGlobalHostResolver"); 235 // See IOThread::Globals for details. 237 ConstructProxyScriptFetcherContext(IOThread::Globals* globals, 267 ConstructSystemRequestContext(IOThread::Globals* globals, 317 class IOThread::LoggingNetworkChangeObserver 377 explicit SystemURLRequestContextGetter(IOThread* io_thread); 388 IOThread* const io_thread_; // Weak pointer, owned by BrowserProcess. 395 IOThread* io_thread) 415 IOThread::Globals: [all...] |
browser_process.h | 29 class IOThread; 147 virtual IOThread* io_thread() = 0;
|
io_thread_unittest.cc | 23 IOThread::Globals* globals) { 24 IOThread::ConfigureQuicGlobals(command_line, quic_trial_group, 29 const IOThread::Globals& globals, 31 IOThread::InitializeNetworkSessionParamsFromGlobals(globals, params); 35 IOThread::Globals* globals) { 36 IOThread::ConfigureSpdyFromTrial(trial_group, globals); 56 IOThread::Globals globals_;
|
io_thread.h | 89 class IOThread : public content::BrowserThreadDelegate { 211 // |net_log| must either outlive the IOThread or be NULL. 212 IOThread(PrefService* local_state, 217 virtual ~IOThread(); 224 // Allows overriding Globals in tests where IOThread::Init() and 225 // IOThread::CleanUp() are not called. This allows for injecting mocks into 226 // IOThread global objects. 409 // threads during shutdown, but is used most frequently on the IOThread. 414 // extensions from the IOThread. 419 // to the IOThread. IOThread owns them all, despite not using scoped_ptr [all...] |
browser_process_impl.h | 83 virtual IOThread* io_thread() OVERRIDE; 168 scoped_ptr<IOThread> io_thread_;
|
/external/chromium_org/chrome/browser/extensions/api/log_private/ |
log_private_api.h | 24 class IOThread; 98 void StartObservingNetEvents(IOThread* io_thread, 101 IOThread* io_thread,
|
log_private_api_chromeos.cc | 287 IOThread* io_thread, 299 IOThread* io_thread,
|
/external/chromium_org/chrome/browser/net/ |
chrome_url_request_context_getter.h | 17 class IOThread;
|
predictor.h | 39 class IOThread; 136 IOThread* io_thread, 218 IOThread* io_thread, 611 IOThread* io_thread,
|
dns_probe_browsertest.cc | 321 void SetUpOnIOThread(IOThread* io_thread); 332 IOThread* io_thread_; 346 void DnsProbeBrowserTestIOThreadHelper::SetUpOnIOThread(IOThread* io_thread) { 358 IOThread::Globals* globals = io_thread_->globals(); 375 IOThread::Globals* globals = io_thread_->globals(); [all...] |
net_error_tab_helper.cc | 61 IOThread* io_thread) {
|
network_stats.h | 379 IOThread* io_thread);
|
predictor.cc | 186 IOThread* io_thread, 690 IOThread* io_thread, [all...] |
/external/chromium_org/chrome/browser/browsing_data/ |
browsing_data_remover.h | 27 class IOThread; 292 void ClearHostnameResolutionCacheOnIOThread(IOThread* io_thread);
|
/external/chromium_org/chrome/browser/profiles/ |
off_the_record_profile_io_data.cc | 208 IOThread* const io_thread = profile_params->io_thread; 209 IOThread::Globals* const io_thread_globals = io_thread->globals(); 293 IOThread* const io_thread = profile_params->io_thread; 294 IOThread::Globals* const io_thread_globals = io_thread->globals();
|
profile_impl_io_data.cc | 204 IOThread* io_thread) const { 423 IOThread* const io_thread = profile_params->io_thread; 424 IOThread::Globals* const io_thread_globals = io_thread->globals(); 606 IOThread* const io_thread = profile_params->io_thread; 607 IOThread::Globals* const io_thread_globals = io_thread->globals(); [all...] |
profile_impl_io_data.h | 82 IOThread* io_thread) const;
|
profile_io_data.cc | [all...] |
profile_io_data.h | 313 IOThread* io_thread;
|
/external/chromium_org/chrome/browser/prefs/ |
browser_prefs.cc | 256 IOThread::RegisterPrefs(registry);
|