Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(31)

Side by Side Diff: chrome/browser/cookies_tree_model_unittest.cc

Issue 7616019: Reorganize chrome/test, part #9 (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src/
Patch Set: '' Created 9 years, 4 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
OLDNEW
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 "chrome/browser/cookies_tree_model.h" 5 #include "chrome/browser/cookies_tree_model.h"
6 6
7 #include <string> 7 #include <string>
8 8
9 #include "chrome/browser/content_settings/host_content_settings_map.h" 9 #include "chrome/browser/content_settings/host_content_settings_map.h"
10 #include "chrome/browser/content_settings/mock_settings_observer.h" 10 #include "chrome/browser/content_settings/mock_settings_observer.h"
11 #include "chrome/browser/mock_browsing_data_appcache_helper.h" 11 #include "chrome/browser/mock_browsing_data_appcache_helper.h"
12 #include "chrome/browser/mock_browsing_data_database_helper.h" 12 #include "chrome/browser/mock_browsing_data_database_helper.h"
13 #include "chrome/browser/mock_browsing_data_file_system_helper.h" 13 #include "chrome/browser/mock_browsing_data_file_system_helper.h"
14 #include "chrome/browser/mock_browsing_data_indexed_db_helper.h" 14 #include "chrome/browser/mock_browsing_data_indexed_db_helper.h"
15 #include "chrome/browser/mock_browsing_data_quota_helper.h" 15 #include "chrome/browser/mock_browsing_data_quota_helper.h"
16 #include "chrome/browser/mock_browsing_data_local_storage_helper.h" 16 #include "chrome/browser/mock_browsing_data_local_storage_helper.h"
17 #include "chrome/test/base/testing_browser_process_test.h"
17 #include "chrome/test/base/testing_profile.h" 18 #include "chrome/test/base/testing_profile.h"
18 #include "chrome/test/testing_browser_process_test.h"
19 #include "content/common/content_notification_types.h" 19 #include "content/common/content_notification_types.h"
20 #include "content/common/notification_details.h" 20 #include "content/common/notification_details.h"
21 #include "net/url_request/url_request_context.h" 21 #include "net/url_request/url_request_context.h"
22 #include "net/url_request/url_request_context_getter.h" 22 #include "net/url_request/url_request_context_getter.h"
23 #include "testing/gtest/include/gtest/gtest.h" 23 #include "testing/gtest/include/gtest/gtest.h"
24 24
25 #include "base/utf_string_conversions.h" 25 #include "base/utf_string_conversions.h"
26 26
27 using ::testing::_; 27 using ::testing::_;
28 28
(...skipping 975 matching lines...) Expand 10 before | Expand all | Expand 10 after
1004 cookies_model->UpdateSearchResults(std::wstring(L"fshost3")); 1004 cookies_model->UpdateSearchResults(std::wstring(L"fshost3"));
1005 EXPECT_EQ("http://fshost3:3/", 1005 EXPECT_EQ("http://fshost3:3/",
1006 GetDisplayedFileSystems(cookies_model.get())); 1006 GetDisplayedFileSystems(cookies_model.get()));
1007 1007
1008 cookies_model->UpdateSearchResults(std::wstring()); 1008 cookies_model->UpdateSearchResults(std::wstring());
1009 EXPECT_EQ("http://fshost1:1/,http://fshost2:2/,http://fshost3:3/", 1009 EXPECT_EQ("http://fshost1:1/,http://fshost2:2/,http://fshost3:3/",
1010 GetDisplayedFileSystems(cookies_model.get())); 1010 GetDisplayedFileSystems(cookies_model.get()));
1011 } 1011 }
1012 1012
1013 } // namespace 1013 } // namespace
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698