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

Unified Diff: chrome/browser/ui/webui/options/cookies_view_handler.cc

Issue 6966036: Wrapping blocked filesystems into TabSpecificContentSettings (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Missed a string. Created 9 years, 7 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 side-by-side diff with in-line comments
Download patch
Index: chrome/browser/ui/webui/options/cookies_view_handler.cc
diff --git a/chrome/browser/ui/webui/options/cookies_view_handler.cc b/chrome/browser/ui/webui/options/cookies_view_handler.cc
index 33f8c2927a2b3167da37f7d6818c0f00d863acdc..2dc093f3256e7d3bedd399a4227e37c995252964 100644
--- a/chrome/browser/ui/webui/options/cookies_view_handler.cc
+++ b/chrome/browser/ui/webui/options/cookies_view_handler.cc
@@ -8,6 +8,7 @@
#include "base/values.h"
#include "chrome/browser/browsing_data_appcache_helper.h"
#include "chrome/browser/browsing_data_database_helper.h"
+#include "chrome/browser/browsing_data_file_system_helper.h"
#include "chrome/browser/browsing_data_indexed_db_helper.h"
#include "chrome/browser/browsing_data_local_storage_helper.h"
#include "chrome/browser/profiles/profile.h"
@@ -142,6 +143,7 @@ void CookiesViewHandler::EnsureCookiesTreeModelCreated() {
NULL,
new BrowsingDataAppCacheHelper(profile),
BrowsingDataIndexedDBHelper::Create(profile),
+ BrowsingDataFileSystemHelper::Create(profile),
false));
cookies_tree_model_->AddCookiesTreeObserver(this);
}
@@ -149,7 +151,7 @@ void CookiesViewHandler::EnsureCookiesTreeModelCreated() {
void CookiesViewHandler::UpdateSearchResults(const ListValue* args) {
std::string query;
- if (!args->GetString(0, &query)){
+ if (!args->GetString(0, &query)) {
return;
}
@@ -165,7 +167,7 @@ void CookiesViewHandler::RemoveAll(const ListValue* args) {
void CookiesViewHandler::Remove(const ListValue* args) {
std::string node_path;
- if (!args->GetString(0, &node_path)){
+ if (!args->GetString(0, &node_path)) {
return;
}
@@ -179,7 +181,7 @@ void CookiesViewHandler::Remove(const ListValue* args) {
void CookiesViewHandler::LoadChildren(const ListValue* args) {
std::string node_path;
- if (!args->GetString(0, &node_path)){
+ if (!args->GetString(0, &node_path)) {
return;
}

Powered by Google App Engine
This is Rietveld 408576698