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

Unified Diff: chrome/browser/browsing_data_database_helper.h

Issue 660236: Clearly identify extension and file:// resources in the cookie tree view. (Closed) Base URL: svn://chrome-svn/chrome/trunk/src/
Patch Set: Created 10 years, 10 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/browsing_data_database_helper.h
===================================================================
--- chrome/browser/browsing_data_database_helper.h (revision 40181)
+++ chrome/browser/browsing_data_database_helper.h (working copy)
@@ -10,6 +10,7 @@
#include "base/callback.h"
#include "base/scoped_ptr.h"
+#include "chrome/common/url_constants.h"
#include "webkit/database/database_tracker.h"
class Profile;
@@ -41,6 +42,18 @@
last_modified(last_modified) {
}
+ bool IsExtensionSchemeData() {
+ return StartsWithASCII(origin_identifier,
+ std::string(chrome::kExtensionScheme),
+ true);
+ }
+
+ bool IsFileSchemeData() {
+ return StartsWithASCII(origin_identifier,
+ std::string(chrome::kFileScheme),
+ true);
+ }
+
std::string host;
std::string database_name;
std::string origin_identifier;
« no previous file with comments | « no previous file | chrome/browser/browsing_data_local_storage_helper.h » ('j') | chrome/browser/cookies_tree_model.cc » ('J')

Powered by Google App Engine
This is Rietveld 408576698