| Index: content/browser/in_process_webkit/webkit_context_unittest.cc
|
| diff --git a/content/browser/in_process_webkit/webkit_context_unittest.cc b/content/browser/in_process_webkit/webkit_context_unittest.cc
|
| index af5a439062e7fe3435ebd261e5cbf1d45938627e..f564919157311267a9a6ff4021949b54a59919ad 100644
|
| --- a/content/browser/in_process_webkit/webkit_context_unittest.cc
|
| +++ b/content/browser/in_process_webkit/webkit_context_unittest.cc
|
| @@ -21,7 +21,7 @@ class MockDOMStorageContext : public DOMStorageContext {
|
|
|
| virtual void PurgeMemory() {
|
| EXPECT_FALSE(BrowserThread::CurrentlyOn(BrowserThread::UI));
|
| - EXPECT_TRUE(BrowserThread::CurrentlyOn(BrowserThread::WEBKIT));
|
| + EXPECT_TRUE(BrowserThread::CurrentlyOn(BrowserThread::WEBKIT_DEPRECATED));
|
| ++purge_count_;
|
| }
|
|
|
| @@ -50,7 +50,8 @@ TEST(WebKitContextTest, PurgeMemory) {
|
| // Start up a WebKit thread for the WebKitContext to call the
|
| // DOMStorageContext on.
|
| MessageLoop message_loop(MessageLoop::TYPE_DEFAULT);
|
| - BrowserThreadImpl webkit_thread(BrowserThread::WEBKIT, &message_loop);
|
| + BrowserThreadImpl webkit_thread(BrowserThread::WEBKIT_DEPRECATED,
|
| + &message_loop);
|
|
|
| {
|
| // Create the contexts.
|
|
|