| Index: webkit/tools/test_shell/test_shell_request_context.cc
|
| diff --git a/webkit/tools/test_shell/test_shell_request_context.cc b/webkit/tools/test_shell/test_shell_request_context.cc
|
| index 201564d534fd59022f2d9cb9e810712cee4bdbe4..014ba65e5eaf0431970f843bc9d67832e024d8e2 100644
|
| --- a/webkit/tools/test_shell/test_shell_request_context.cc
|
| +++ b/webkit/tools/test_shell/test_shell_request_context.cc
|
| @@ -54,7 +54,7 @@ class TestShellHttpUserAgentSettings : public net::HttpUserAgentSettings {
|
| };
|
|
|
| TestShellRequestContext::TestShellRequestContext()
|
| - : ALLOW_THIS_IN_INITIALIZER_LIST(storage_(this)) {
|
| + : storage_(this) {
|
| Init(base::FilePath(), net::HttpCache::NORMAL, false);
|
| }
|
|
|
| @@ -62,7 +62,7 @@ TestShellRequestContext::TestShellRequestContext(
|
| const base::FilePath& cache_path,
|
| net::HttpCache::Mode cache_mode,
|
| bool no_proxy)
|
| - : ALLOW_THIS_IN_INITIALIZER_LIST(storage_(this)) {
|
| + : storage_(this) {
|
| Init(cache_path, cache_mode, no_proxy);
|
| }
|
|
|
|
|