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

Side by Side Diff: chrome/browser/browsing_data/browsing_data_remover_unittest.cc

Issue 22297005: Move webkit/{browser,common}/dom_storage into content/ (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 7 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) 2012 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2012 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/browsing_data/browsing_data_remover.h" 5 #include "chrome/browser/browsing_data/browsing_data_remover.h"
6 6
7 #include <set> 7 #include <set>
8 #include <vector> 8 #include <vector>
9 9
10 #include "base/bind.h" 10 #include "base/bind.h"
(...skipping 14 matching lines...) Expand all
25 #include "chrome/browser/safe_browsing/safe_browsing_service.h" 25 #include "chrome/browser/safe_browsing/safe_browsing_service.h"
26 #include "chrome/common/pref_names.h" 26 #include "chrome/common/pref_names.h"
27 #include "chrome/test/base/testing_browser_process.h" 27 #include "chrome/test/base/testing_browser_process.h"
28 #include "chrome/test/base/testing_profile.h" 28 #include "chrome/test/base/testing_profile.h"
29 #include "components/autofill/core/browser/autofill_common_test.h" 29 #include "components/autofill/core/browser/autofill_common_test.h"
30 #include "components/autofill/core/browser/autofill_profile.h" 30 #include "components/autofill/core/browser/autofill_profile.h"
31 #include "components/autofill/core/browser/credit_card.h" 31 #include "components/autofill/core/browser/credit_card.h"
32 #include "components/autofill/core/browser/personal_data_manager.h" 32 #include "components/autofill/core/browser/personal_data_manager.h"
33 #include "components/autofill/core/browser/personal_data_manager_observer.h" 33 #include "components/autofill/core/browser/personal_data_manager_observer.h"
34 #include "content/public/browser/dom_storage_context.h" 34 #include "content/public/browser/dom_storage_context.h"
35 #include "content/public/browser/local_storage_usage_info.h"
35 #include "content/public/browser/notification_service.h" 36 #include "content/public/browser/notification_service.h"
36 #include "content/public/browser/storage_partition.h" 37 #include "content/public/browser/storage_partition.h"
37 #include "content/public/test/test_browser_thread.h" 38 #include "content/public/test/test_browser_thread.h"
38 #include "content/public/test/test_browser_thread_bundle.h" 39 #include "content/public/test/test_browser_thread_bundle.h"
39 #include "net/cookies/cookie_monster.h" 40 #include "net/cookies/cookie_monster.h"
40 #include "net/ssl/server_bound_cert_service.h" 41 #include "net/ssl/server_bound_cert_service.h"
41 #include "net/ssl/server_bound_cert_store.h" 42 #include "net/ssl/server_bound_cert_store.h"
42 #include "net/ssl/ssl_client_cert_type.h" 43 #include "net/ssl/ssl_client_cert_type.h"
43 #include "net/url_request/url_request_context.h" 44 #include "net/url_request/url_request_context.h"
44 #include "net/url_request/url_request_context_getter.h" 45 #include "net/url_request/url_request_context_getter.h"
45 #include "testing/gtest/include/gtest/gtest.h" 46 #include "testing/gtest/include/gtest/gtest.h"
46 #include "webkit/browser/quota/mock_quota_manager.h" 47 #include "webkit/browser/quota/mock_quota_manager.h"
47 #include "webkit/browser/quota/quota_manager.h" 48 #include "webkit/browser/quota/quota_manager.h"
48 #include "webkit/common/dom_storage/dom_storage_types.h"
49 #include "webkit/common/quota/quota_types.h" 49 #include "webkit/common/quota/quota_types.h"
50 50
51 using content::BrowserThread; 51 using content::BrowserThread;
52 52
53 namespace { 53 namespace {
54 54
55 const char kTestOrigin1[] = "http://host1:1/"; 55 const char kTestOrigin1[] = "http://host1:1/";
56 const char kTestOrigin2[] = "http://host2:1/"; 56 const char kTestOrigin2[] = "http://host2:1/";
57 const char kTestOrigin3[] = "http://host3:1/"; 57 const char kTestOrigin3[] = "http://host3:1/";
58 const char kTestOriginExt[] = "chrome-extension://abcdefghijklmnopqrstuvwxyz/"; 58 const char kTestOriginExt[] = "chrome-extension://abcdefghijklmnopqrstuvwxyz/";
(...skipping 454 matching lines...) Expand 10 before | Expand all | Expand 10 after
513 base::Time::Now()); 513 base::Time::Now());
514 } 514 }
515 515
516 private: 516 private:
517 void GetLocalStorageUsage() { 517 void GetLocalStorageUsage() {
518 dom_storage_context_->GetLocalStorageUsage( 518 dom_storage_context_->GetLocalStorageUsage(
519 base::Bind(&RemoveLocalStorageTester::OnGotLocalStorageUsage, 519 base::Bind(&RemoveLocalStorageTester::OnGotLocalStorageUsage,
520 base::Unretained(this))); 520 base::Unretained(this)));
521 } 521 }
522 void OnGotLocalStorageUsage( 522 void OnGotLocalStorageUsage(
523 const std::vector<dom_storage::LocalStorageUsageInfo>& infos) { 523 const std::vector<content::LocalStorageUsageInfo>& infos) {
524 infos_ = infos; 524 infos_ = infos;
525 await_completion_.Notify(); 525 await_completion_.Notify();
526 } 526 }
527 527
528 // We don't own these pointers. 528 // We don't own these pointers.
529 TestingProfile* profile_; 529 TestingProfile* profile_;
530 content::DOMStorageContext* dom_storage_context_; 530 content::DOMStorageContext* dom_storage_context_;
531 531
532 std::vector<dom_storage::LocalStorageUsageInfo> infos_; 532 std::vector<content::LocalStorageUsageInfo> infos_;
533 533
534 AwaitCompletionHelper await_completion_; 534 AwaitCompletionHelper await_completion_;
535 535
536 DISALLOW_COPY_AND_ASSIGN(RemoveLocalStorageTester); 536 DISALLOW_COPY_AND_ASSIGN(RemoveLocalStorageTester);
537 }; 537 };
538 538
539 // Test Class ---------------------------------------------------------------- 539 // Test Class ----------------------------------------------------------------
540 540
541 class BrowsingDataRemoverTest : public testing::Test, 541 class BrowsingDataRemoverTest : public testing::Test,
542 public content::NotificationObserver { 542 public content::NotificationObserver {
(...skipping 840 matching lines...) Expand 10 before | Expand all | Expand 10 after
1383 BlockUntilBrowsingDataRemoved( 1383 BlockUntilBrowsingDataRemoved(
1384 BrowsingDataRemover::LAST_HOUR, 1384 BrowsingDataRemover::LAST_HOUR,
1385 BrowsingDataRemover::REMOVE_HISTORY, false); 1385 BrowsingDataRemover::REMOVE_HISTORY, false);
1386 1386
1387 EXPECT_EQ(BrowsingDataRemover::REMOVE_HISTORY, GetRemovalMask()); 1387 EXPECT_EQ(BrowsingDataRemover::REMOVE_HISTORY, GetRemovalMask());
1388 EXPECT_EQ(BrowsingDataHelper::UNPROTECTED_WEB, GetOriginSetMask()); 1388 EXPECT_EQ(BrowsingDataHelper::UNPROTECTED_WEB, GetOriginSetMask());
1389 EXPECT_TRUE(tester.HasOrigin(std::string())); 1389 EXPECT_TRUE(tester.HasOrigin(std::string()));
1390 EXPECT_FALSE(tester.HasOrigin(kWebOrigin)); 1390 EXPECT_FALSE(tester.HasOrigin(kWebOrigin));
1391 EXPECT_TRUE(tester.HasOrigin(kChromeOrigin)); 1391 EXPECT_TRUE(tester.HasOrigin(kChromeOrigin));
1392 } 1392 }
OLDNEW
« no previous file with comments | « chrome/browser/browsing_data/browsing_data_remover.cc ('k') | content/browser/browser_context.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698