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.cc

Issue 13839013: Webdata Component tryjobs NOT FOR REVIEW (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: After WD/AF merge Created 7 years, 8 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
« no previous file with comments | « no previous file | chrome/browser/sync/glue/autofill_data_type_controller.h » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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 <map> 7 #include <map>
8 #include <set> 8 #include <set>
9 9
10 #include "base/bind.h" 10 #include "base/bind.h"
(...skipping 27 matching lines...) Expand all
38 #include "chrome/browser/search_engines/template_url_service.h" 38 #include "chrome/browser/search_engines/template_url_service.h"
39 #include "chrome/browser/search_engines/template_url_service_factory.h" 39 #include "chrome/browser/search_engines/template_url_service_factory.h"
40 #include "chrome/browser/sessions/session_service.h" 40 #include "chrome/browser/sessions/session_service.h"
41 #include "chrome/browser/sessions/session_service_factory.h" 41 #include "chrome/browser/sessions/session_service_factory.h"
42 #include "chrome/browser/sessions/tab_restore_service.h" 42 #include "chrome/browser/sessions/tab_restore_service.h"
43 #include "chrome/browser/sessions/tab_restore_service_factory.h" 43 #include "chrome/browser/sessions/tab_restore_service_factory.h"
44 #include "chrome/common/chrome_notification_types.h" 44 #include "chrome/common/chrome_notification_types.h"
45 #include "chrome/common/pref_names.h" 45 #include "chrome/common/pref_names.h"
46 #include "chrome/common/url_constants.h" 46 #include "chrome/common/url_constants.h"
47 #include "components/autofill/browser/personal_data_manager.h" 47 #include "components/autofill/browser/personal_data_manager.h"
48 #include "components/webdata/autofill/autofill_webdata_service.h" 48 #include "components/autofill/browser/webdata/autofill_webdata_service.h"
49 #include "content/public/browser/browser_thread.h" 49 #include "content/public/browser/browser_thread.h"
50 #include "content/public/browser/dom_storage_context.h" 50 #include "content/public/browser/dom_storage_context.h"
51 #include "content/public/browser/download_manager.h" 51 #include "content/public/browser/download_manager.h"
52 #include "content/public/browser/notification_service.h" 52 #include "content/public/browser/notification_service.h"
53 #include "content/public/browser/plugin_data_remover.h" 53 #include "content/public/browser/plugin_data_remover.h"
54 #include "content/public/browser/storage_partition.h" 54 #include "content/public/browser/storage_partition.h"
55 #include "content/public/browser/user_metrics.h" 55 #include "content/public/browser/user_metrics.h"
56 #include "net/base/net_errors.h" 56 #include "net/base/net_errors.h"
57 #include "net/cookies/cookie_store.h" 57 #include "net/cookies/cookie_store.h"
58 #include "net/disk_cache/disk_cache.h" 58 #include "net/disk_cache/disk_cache.h"
(...skipping 966 matching lines...) Expand 10 before | Expand all | Expand 10 after
1025 BrowserThread::UI, FROM_HERE, 1025 BrowserThread::UI, FROM_HERE,
1026 base::Bind(&BrowsingDataRemover::OnClearedFormData, 1026 base::Bind(&BrowsingDataRemover::OnClearedFormData,
1027 base::Unretained(this))); 1027 base::Unretained(this)));
1028 } 1028 }
1029 1029
1030 void BrowsingDataRemover::OnClearedFormData() { 1030 void BrowsingDataRemover::OnClearedFormData() {
1031 DCHECK(BrowserThread::CurrentlyOn(BrowserThread::UI)); 1031 DCHECK(BrowserThread::CurrentlyOn(BrowserThread::UI));
1032 waiting_for_clear_form_ = false; 1032 waiting_for_clear_form_ = false;
1033 NotifyAndDeleteIfDone(); 1033 NotifyAndDeleteIfDone();
1034 } 1034 }
OLDNEW
« no previous file with comments | « no previous file | chrome/browser/sync/glue/autofill_data_type_controller.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698