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

Unified Diff: chrome/browser/browsing_data_local_storage_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_local_storage_helper.h
===================================================================
--- chrome/browser/browsing_data_local_storage_helper.h (revision 40181)
+++ chrome/browser/browsing_data_local_storage_helper.h (working copy)
@@ -11,6 +11,7 @@
#include "base/file_path.h"
#include "base/scoped_ptr.h"
#include "base/time.h"
+#include "chrome/common/url_constants.h"
class Profile;
@@ -46,6 +47,14 @@
last_modified(last_modified) {
}
+ bool IsExtensionSchemeData() {
+ return protocol == chrome::kExtensionScheme;
+ }
+
+ bool IsFileSchemeData() {
+ return protocol == chrome::kFileScheme;
+ }
+
std::string protocol;
std::string host;
unsigned short port;

Powered by Google App Engine
This is Rietveld 408576698