Index: chrome/browser/browsing_data/browsing_data_remover.h |
diff --git a/chrome/browser/browsing_data/browsing_data_remover.h b/chrome/browser/browsing_data/browsing_data_remover.h |
index 2286ce6dc550b0017345ef4eb8dd105fd445b39d..f3e6a46f706ab32f3bd4bdbf337f6d6dec61bac3 100644 |
--- a/chrome/browser/browsing_data/browsing_data_remover.h |
+++ b/chrome/browser/browsing_data/browsing_data_remover.h |
@@ -94,7 +94,7 @@ class BrowsingDataRemover : public KeyedService { |
// prohibited from deleting history or downloads. |
REMOVE_NOCHECKS = 1 << 16, |
REMOVE_CACHE_STORAGE = 1 << 17, |
-#if BUILDFLAG(ANDROID_JAVA_UI) |
+#if defined(OS_ANDROID) |
REMOVE_WEBAPP_DATA = 1 << 18, |
#endif |
REMOVE_DURABLE_PERMISSION = 1 << 19, |
@@ -115,7 +115,7 @@ class BrowsingDataRemover : public KeyedService { |
REMOVE_CACHE_STORAGE | |
REMOVE_WEBSQL | |
REMOVE_CHANNEL_IDS | |
-#if BUILDFLAG(ANDROID_JAVA_UI) |
+#if defined(OS_ANDROID) |
REMOVE_WEBAPP_DATA | |
#endif |
REMOVE_SITE_USAGE_DATA | |
@@ -297,7 +297,7 @@ class BrowsingDataRemover : public KeyedService { |
protected: |
// Use BrowsingDataRemoverFactory::GetForBrowserContext to get an instance of |
// this class. The constructor is protected so that the class is mockable. |
- BrowsingDataRemover(content::BrowserContext* browser_context); |
+ explicit BrowsingDataRemover(content::BrowserContext* browser_context); |
sky
2017/01/06 23:27:27
Nice catch!
F
2017/01/09 21:36:32
Acknowledged.
|
~BrowsingDataRemover() override; |
// A common reduction of all public Remove[WithFilter][AndReply] methods. |