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

Unified Diff: chrome/browser/browsing_data_indexed_db_helper.h

Issue 6366019: Part 1 of repairing regressions to my old clang check plugins so Nico can (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Remove Nico's changes that I patched in for testing. Created 9 years, 11 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_indexed_db_helper.h
diff --git a/chrome/browser/browsing_data_indexed_db_helper.h b/chrome/browser/browsing_data_indexed_db_helper.h
index 932c00b7f6124b45a9c7d831a12b1370c39500d3..0ba58ed46dda346c18839990965f4d9fb15fdba3 100644
--- a/chrome/browser/browsing_data_indexed_db_helper.h
+++ b/chrome/browser/browsing_data_indexed_db_helper.h
@@ -37,20 +37,10 @@ class BrowsingDataIndexedDBHelper
const std::string& origin,
const FilePath& file_path,
int64 size,
- base::Time last_modified)
- : protocol(protocol),
- host(host),
- port(port),
- database_identifier(database_identifier),
- origin(origin),
- file_path(file_path),
- size(size),
- last_modified(last_modified) {
- }
-
- bool IsFileSchemeData() {
- return protocol == chrome::kFileScheme;
Nico 2011/01/27 03:55:17 does your plugin warn on this? This looks pretty h
Elliot Glaysher 2011/01/27 18:48:05 No, it didn't. I just did it for consistency with
- }
+ base::Time last_modified);
+ ~IndexedDBInfo();
+
+ bool IsFileSchemeData();
std::string protocol;
std::string host;

Powered by Google App Engine
This is Rietveld 408576698