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

Side by Side Diff: chrome/browser/browsing_data_remover.h

Issue 8223004: Check whether clearing LSO data is supported in clients of the BrowsingDataRemover. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: fix unit test Created 9 years, 2 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/browsing_data_remover.cc » ('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) 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 #ifndef CHROME_BROWSER_BROWSING_DATA_REMOVER_H_ 5 #ifndef CHROME_BROWSER_BROWSING_DATA_REMOVER_H_
6 #define CHROME_BROWSER_BROWSING_DATA_REMOVER_H_ 6 #define CHROME_BROWSER_BROWSING_DATA_REMOVER_H_
7 #pragma once 7 #pragma once
8 8
9 #include <vector> 9 #include <vector>
10 10
(...skipping 241 matching lines...) Expand 10 before | Expand all | Expand 10 after
252 // Tracking how many origins need to be deleted, and whether we're finished 252 // Tracking how many origins need to be deleted, and whether we're finished
253 // gathering origins. 253 // gathering origins.
254 int quota_managed_origins_to_delete_count_; 254 int quota_managed_origins_to_delete_count_;
255 int quota_managed_storage_types_to_delete_count_; 255 int quota_managed_storage_types_to_delete_count_;
256 256
257 ObserverList<Observer> observer_list_; 257 ObserverList<Observer> observer_list_;
258 258
259 // Used if we need to clear history. 259 // Used if we need to clear history.
260 CancelableRequestConsumer request_consumer_; 260 CancelableRequestConsumer request_consumer_;
261 261
262 // Keeps track of whether clearing LSO data is supported.
263 BooleanPrefMember clear_plugin_lso_data_enabled_;
264
265 DISALLOW_COPY_AND_ASSIGN(BrowsingDataRemover); 262 DISALLOW_COPY_AND_ASSIGN(BrowsingDataRemover);
266 }; 263 };
267 264
268 #endif // CHROME_BROWSER_BROWSING_DATA_REMOVER_H_ 265 #endif // CHROME_BROWSER_BROWSING_DATA_REMOVER_H_
OLDNEW
« no previous file with comments | « no previous file | chrome/browser/browsing_data_remover.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698