| Index: chrome/browser/io_thread.cc
|
| diff --git a/chrome/browser/io_thread.cc b/chrome/browser/io_thread.cc
|
| index fb1038c5c5691928edb5ac4846ff7036a4f9d73f..5d18e42c71e9f88d40d708fa8df970d0b57f2fd3 100644
|
| --- a/chrome/browser/io_thread.cc
|
| +++ b/chrome/browser/io_thread.cc
|
| @@ -443,6 +443,12 @@ IOThread::Globals* IOThread::globals() {
|
| return globals_;
|
| }
|
|
|
| +void IOThread::SetGlobalsForTesting(Globals* globals) {
|
| + DCHECK(BrowserThread::CurrentlyOn(BrowserThread::IO));
|
| + DCHECK(!globals || !globals_);
|
| + globals_ = globals;
|
| +}
|
| +
|
| ChromeNetLog* IOThread::net_log() {
|
| return net_log_;
|
| }
|
|
|