| Index: chrome/browser/io_thread.cc
|
| diff --git a/chrome/browser/io_thread.cc b/chrome/browser/io_thread.cc
|
| index 36889967eb1755da4a78e12421840f3102074e33..44cd6cdc514675fabaf9723690c3b169d3eda154 100644
|
| --- a/chrome/browser/io_thread.cc
|
| +++ b/chrome/browser/io_thread.cc
|
| @@ -439,6 +439,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_;
|
| }
|
|
|