OLD | NEW |
1 // Copyright (c) 2011 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2011 The Chromium Authors. All rights reserved. |
2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be |
3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
4 | 4 |
5 #include "base/bind.h" | 5 #include "base/bind.h" |
6 #include "base/command_line.h" | 6 #include "base/command_line.h" |
7 #include "base/file_path.h" | 7 #include "base/file_path.h" |
8 #include "base/synchronization/waitable_event.h" | 8 #include "base/synchronization/waitable_event.h" |
9 #include "chrome/browser/profiles/profile.h" | 9 #include "chrome/browser/profiles/profile.h" |
10 #include "chrome/browser/ui/browser.h" | 10 #include "chrome/browser/ui/browser.h" |
11 #include "chrome/browser/ui/browser_commands.h" | 11 #include "chrome/browser/ui/browser_commands.h" |
12 #include "chrome/browser/ui/browser_list.h" | 12 #include "chrome/browser/ui/browser_list.h" |
| 13 #include "chrome/common/chrome_switches.h" |
13 #include "chrome/common/chrome_notification_types.h" | 14 #include "chrome/common/chrome_notification_types.h" |
14 #include "chrome/test/automation/automation_proxy.h" | 15 #include "chrome/test/automation/automation_proxy.h" |
15 #include "chrome/test/automation/browser_proxy.h" | 16 #include "chrome/test/automation/browser_proxy.h" |
16 #include "chrome/test/automation/tab_proxy.h" | 17 #include "chrome/test/automation/tab_proxy.h" |
17 #include "chrome/test/base/in_process_browser_test.h" | 18 #include "chrome/test/base/in_process_browser_test.h" |
18 #include "chrome/test/base/ui_test_utils.h" | 19 #include "chrome/test/base/ui_test_utils.h" |
19 #include "content/public/browser/browser_thread.h" | 20 #include "content/public/browser/browser_thread.h" |
20 #include "content/public/browser/notification_service.h" | 21 #include "content/public/browser/notification_service.h" |
21 #include "content/public/common/content_switches.h" | |
22 #include "net/cookies/cookie_store.h" | 22 #include "net/cookies/cookie_store.h" |
23 #include "net/url_request/url_request_context.h" | 23 #include "net/url_request/url_request_context.h" |
24 #include "net/url_request/url_request_context_getter.h" | 24 #include "net/url_request/url_request_context_getter.h" |
25 | 25 |
26 using content::BrowserThread; | 26 using content::BrowserThread; |
27 | 27 |
28 namespace { | 28 namespace { |
29 | 29 |
30 void GetCookiesCallback(std::string* cookies_out, | 30 void GetCookiesCallback(std::string* cookies_out, |
31 base::WaitableEvent* event, | 31 base::WaitableEvent* event, |
(...skipping 75 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
107 content::NotificationService::AllSources()); | 107 content::NotificationService::AllSources()); |
108 // Close the tab. This should launch the unload handler, which sets a cookie | 108 // Close the tab. This should launch the unload handler, which sets a cookie |
109 // that's stored to disk. | 109 // that's stored to disk. |
110 chrome::CloseTab(browser()); | 110 chrome::CloseTab(browser()); |
111 renderer_shutdown_observer.Wait(); | 111 renderer_shutdown_observer.Wait(); |
112 | 112 |
113 | 113 |
114 EXPECT_EQ("unloaded=ohyeah", GetCookies(url)); | 114 EXPECT_EQ("unloaded=ohyeah", GetCookies(url)); |
115 } | 115 } |
116 #endif | 116 #endif |
OLD | NEW |