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

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

Issue 2075023002: UI Changes to support clearing EME/CDM data (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 4 years, 6 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
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 #ifndef CHROME_BROWSER_BROWSING_DATA_BROWSING_DATA_REMOVER_H_ 5 #ifndef CHROME_BROWSER_BROWSING_DATA_BROWSING_DATA_REMOVER_H_
6 #define CHROME_BROWSER_BROWSING_DATA_BROWSING_DATA_REMOVER_H_ 6 #define CHROME_BROWSER_BROWSING_DATA_BROWSING_DATA_REMOVER_H_
7 7
8 #include <stdint.h> 8 #include <stdint.h>
9 9
10 #include <set> 10 #include <set>
(...skipping 449 matching lines...) Expand 10 before | Expand all | Expand 10 after
460 // Used to deauthorize content licenses for Pepper Flash. 460 // Used to deauthorize content licenses for Pepper Flash.
461 std::unique_ptr<PepperFlashSettingsManager> pepper_flash_settings_manager_; 461 std::unique_ptr<PepperFlashSettingsManager> pepper_flash_settings_manager_;
462 #endif 462 #endif
463 463
464 uint32_t deauthorize_content_licenses_request_id_ = 0; 464 uint32_t deauthorize_content_licenses_request_id_ = 0;
465 // True if we're waiting for various data to be deleted. 465 // True if we're waiting for various data to be deleted.
466 // These may only be accessed from UI thread in order to avoid races! 466 // These may only be accessed from UI thread in order to avoid races!
467 bool waiting_for_clear_autofill_origin_urls_ = false; 467 bool waiting_for_clear_autofill_origin_urls_ = false;
468 bool waiting_for_clear_cache_ = false; 468 bool waiting_for_clear_cache_ = false;
469 bool waiting_for_clear_channel_ids_ = false; 469 bool waiting_for_clear_channel_ids_ = false;
470 bool waiting_for_clear_content_licenses_ = false; 470 bool waiting_for_clear_flash_content_licenses_ = false;
471 // Non-zero if waiting for cookies to be cleared. 471 // Non-zero if waiting for cookies to be cleared.
472 int waiting_for_clear_cookies_count_ = 0; 472 int waiting_for_clear_cookies_count_ = 0;
473 bool waiting_for_clear_domain_reliability_monitor_ = false; 473 bool waiting_for_clear_domain_reliability_monitor_ = false;
474 bool waiting_for_clear_form_ = false; 474 bool waiting_for_clear_form_ = false;
475 bool waiting_for_clear_history_ = false; 475 bool waiting_for_clear_history_ = false;
476 bool waiting_for_clear_hostname_resolution_cache_ = false; 476 bool waiting_for_clear_hostname_resolution_cache_ = false;
477 bool waiting_for_clear_keyword_data_ = false; 477 bool waiting_for_clear_keyword_data_ = false;
478 bool waiting_for_clear_nacl_cache_ = false; 478 bool waiting_for_clear_nacl_cache_ = false;
479 bool waiting_for_clear_network_predictor_ = false; 479 bool waiting_for_clear_network_predictor_ = false;
480 bool waiting_for_clear_networking_history_ = false; 480 bool waiting_for_clear_networking_history_ = false;
(...skipping 35 matching lines...) Expand 10 before | Expand all | Expand 10 after
516 // not initialised, so the registry must be mocked out. 516 // not initialised, so the registry must be mocked out.
517 std::unique_ptr<WebappRegistry> webapp_registry_; 517 std::unique_ptr<WebappRegistry> webapp_registry_;
518 #endif 518 #endif
519 519
520 base::WeakPtrFactory<BrowsingDataRemover> weak_ptr_factory_; 520 base::WeakPtrFactory<BrowsingDataRemover> weak_ptr_factory_;
521 521
522 DISALLOW_COPY_AND_ASSIGN(BrowsingDataRemover); 522 DISALLOW_COPY_AND_ASSIGN(BrowsingDataRemover);
523 }; 523 };
524 524
525 #endif // CHROME_BROWSER_BROWSING_DATA_BROWSING_DATA_REMOVER_H_ 525 #endif // CHROME_BROWSER_BROWSING_DATA_BROWSING_DATA_REMOVER_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698