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

Unified Diff: Source/modules/webdatabase/InspectorDatabaseAgent.h

Issue 864533002: Fix template angle bracket syntax in modules (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Created 5 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: Source/modules/webdatabase/InspectorDatabaseAgent.h
diff --git a/Source/modules/webdatabase/InspectorDatabaseAgent.h b/Source/modules/webdatabase/InspectorDatabaseAgent.h
index 09d763db1201b51010710bb7480d6ec6eaa481b2..3bb03fcaa25856e42e0bf15b211ec7f293a83b6e 100644
--- a/Source/modules/webdatabase/InspectorDatabaseAgent.h
+++ b/Source/modules/webdatabase/InspectorDatabaseAgent.h
@@ -62,7 +62,7 @@ public:
// Called from the front-end.
virtual void enable(ErrorString*) override;
virtual void disable(ErrorString*) override;
- virtual void getDatabaseTableNames(ErrorString*, const String& databaseId, RefPtr<TypeBuilder::Array<String> >& names) override;
+ virtual void getDatabaseTableNames(ErrorString*, const String& databaseId, RefPtr<TypeBuilder::Array<String>>& names) override;
virtual void executeSQL(ErrorString*, const String& databaseId, const String& query, PassRefPtrWillBeRawPtr<ExecuteSQLCallback>) override;
void didOpenDatabase(Database*, const String& domain, const String& name, const String& version);
@@ -73,7 +73,7 @@ private:
InspectorDatabaseResource* findByFileName(const String& fileName);
InspectorFrontend::Database* m_frontend;
- typedef PersistentHeapHashMapWillBeHeapHashMap<String, Member<InspectorDatabaseResource> > DatabaseResourcesHeapMap;
+ typedef PersistentHeapHashMapWillBeHeapHashMap<String, Member<InspectorDatabaseResource>> DatabaseResourcesHeapMap;
DatabaseResourcesHeapMap m_resources;
bool m_enabled;
};

Powered by Google App Engine
This is Rietveld 408576698