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

Unified Diff: Source/modules/filesystem/InspectorFileSystemAgent.cpp

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/filesystem/InspectorFileSystemAgent.cpp
diff --git a/Source/modules/filesystem/InspectorFileSystemAgent.cpp b/Source/modules/filesystem/InspectorFileSystemAgent.cpp
index a2e4bf73b87b0da15300ce6840a82375c7893eae..aaef46227822a5a7a7eecd0c3b4d9889f4dd7df5 100644
--- a/Source/modules/filesystem/InspectorFileSystemAgent.cpp
+++ b/Source/modules/filesystem/InspectorFileSystemAgent.cpp
@@ -204,7 +204,7 @@ private:
bool didGetEntry(Entry*);
bool didReadDirectoryEntries(const EntryHeapVector&);
- void reportResult(FileError::ErrorCode errorCode, PassRefPtr<Array<TypeBuilder::FileSystem::Entry> > entries = nullptr)
+ void reportResult(FileError::ErrorCode errorCode, PassRefPtr<Array<TypeBuilder::FileSystem::Entry>> entries = nullptr)
{
m_requestCallback->sendSuccess(static_cast<int>(errorCode), entries);
}
@@ -217,7 +217,7 @@ private:
RefPtrWillBePersistent<RequestDirectoryContentCallback> m_requestCallback;
KURL m_url;
- RefPtr<Array<TypeBuilder::FileSystem::Entry> > m_entries;
+ RefPtr<Array<TypeBuilder::FileSystem::Entry>> m_entries;
Persistent<DirectoryReader> m_directoryReader;
};

Powered by Google App Engine
This is Rietveld 408576698