| Index: chrome/browser/android/preferences/website_preference_bridge.cc
|
| diff --git a/chrome/browser/android/preferences/website_preference_bridge.cc b/chrome/browser/android/preferences/website_preference_bridge.cc
|
| index 509ab44e1fb4f3300c2b2e4b1f667060305d3d45..4ab1bf23f09e213bce0a4341aebc0399895552b9 100644
|
| --- a/chrome/browser/android/preferences/website_preference_bridge.cc
|
| +++ b/chrome/browser/android/preferences/website_preference_bridge.cc
|
| @@ -531,7 +531,7 @@ class SiteDataDeleteHelper :
|
| new BrowsingDataCookieHelper(profile_->GetRequestContext()),
|
| new BrowsingDataDatabaseHelper(profile_),
|
| new BrowsingDataLocalStorageHelper(profile_),
|
| - NULL,
|
| + nullptr,
|
| new BrowsingDataAppCacheHelper(profile_),
|
| new BrowsingDataIndexedDBHelper(indexed_db_context),
|
| BrowsingDataFileSystemHelper::Create(file_system_context),
|
| @@ -539,7 +539,8 @@ class SiteDataDeleteHelper :
|
| BrowsingDataChannelIDHelper::Create(profile_->GetRequestContext()),
|
| new BrowsingDataServiceWorkerHelper(service_worker_context),
|
| new BrowsingDataCacheStorageHelper(cache_storage_context),
|
| - NULL);
|
| + nullptr,
|
| + nullptr);
|
|
|
| cookies_tree_model_.reset(new CookiesTreeModel(
|
| container, profile_->GetExtensionSpecialStoragePolicy()));
|
|
|