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

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

Issue 12680003: net: split net/ssl out of net/base (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: rebase Created 7 years, 9 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 16 matching lines...) Expand all
27 #include "chrome/test/base/testing_profile.h" 27 #include "chrome/test/base/testing_profile.h"
28 #include "components/autofill/browser/autofill_common_test.h" 28 #include "components/autofill/browser/autofill_common_test.h"
29 #include "components/autofill/browser/autofill_profile.h" 29 #include "components/autofill/browser/autofill_profile.h"
30 #include "components/autofill/browser/credit_card.h" 30 #include "components/autofill/browser/credit_card.h"
31 #include "components/autofill/browser/personal_data_manager.h" 31 #include "components/autofill/browser/personal_data_manager.h"
32 #include "components/autofill/browser/personal_data_manager_observer.h" 32 #include "components/autofill/browser/personal_data_manager_observer.h"
33 #include "content/public/browser/dom_storage_context.h" 33 #include "content/public/browser/dom_storage_context.h"
34 #include "content/public/browser/notification_service.h" 34 #include "content/public/browser/notification_service.h"
35 #include "content/public/browser/storage_partition.h" 35 #include "content/public/browser/storage_partition.h"
36 #include "content/public/test/test_browser_thread.h" 36 #include "content/public/test/test_browser_thread.h"
37 #include "net/base/server_bound_cert_service.h"
38 #include "net/base/server_bound_cert_store.h"
39 #include "net/base/ssl_client_cert_type.h"
40 #include "net/cookies/cookie_monster.h" 37 #include "net/cookies/cookie_monster.h"
38 #include "net/ssl/server_bound_cert_service.h"
39 #include "net/ssl/server_bound_cert_store.h"
40 #include "net/ssl/ssl_client_cert_type.h"
41 #include "net/url_request/url_request_context.h" 41 #include "net/url_request/url_request_context.h"
42 #include "net/url_request/url_request_context_getter.h" 42 #include "net/url_request/url_request_context_getter.h"
43 #include "testing/gtest/include/gtest/gtest.h" 43 #include "testing/gtest/include/gtest/gtest.h"
44 #include "third_party/WebKit/Source/Platform/chromium/public/WebCString.h" 44 #include "third_party/WebKit/Source/Platform/chromium/public/WebCString.h"
45 #include "third_party/WebKit/Source/Platform/chromium/public/WebString.h" 45 #include "third_party/WebKit/Source/Platform/chromium/public/WebString.h"
46 #include "third_party/WebKit/Source/WebKit/chromium/public/WebSecurityOrigin.h" 46 #include "third_party/WebKit/Source/WebKit/chromium/public/WebSecurityOrigin.h"
47 #include "webkit/dom_storage/dom_storage_types.h" 47 #include "webkit/dom_storage/dom_storage_types.h"
48 #include "webkit/glue/webkit_glue.h" 48 #include "webkit/glue/webkit_glue.h"
49 #include "webkit/quota/mock_quota_manager.h" 49 #include "webkit/quota/mock_quota_manager.h"
50 #include "webkit/quota/quota_manager.h" 50 #include "webkit/quota/quota_manager.h"
(...skipping 1278 matching lines...) Expand 10 before | Expand all | Expand 10 after
1329 ASSERT_TRUE(tester.HasProfile()); 1329 ASSERT_TRUE(tester.HasProfile());
1330 1330
1331 BlockUntilBrowsingDataRemoved( 1331 BlockUntilBrowsingDataRemoved(
1332 BrowsingDataRemover::EVERYTHING, 1332 BrowsingDataRemover::EVERYTHING,
1333 BrowsingDataRemover::REMOVE_FORM_DATA, false); 1333 BrowsingDataRemover::REMOVE_FORM_DATA, false);
1334 1334
1335 EXPECT_EQ(BrowsingDataRemover::REMOVE_FORM_DATA, GetRemovalMask()); 1335 EXPECT_EQ(BrowsingDataRemover::REMOVE_FORM_DATA, GetRemovalMask());
1336 EXPECT_EQ(BrowsingDataHelper::UNPROTECTED_WEB, GetOriginSetMask()); 1336 EXPECT_EQ(BrowsingDataHelper::UNPROTECTED_WEB, GetOriginSetMask());
1337 ASSERT_FALSE(tester.HasProfile()); 1337 ASSERT_FALSE(tester.HasProfile());
1338 } 1338 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698