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

Unified Diff: third_party/WebKit/Source/modules/filesystem/InspectorFileSystemAgent.h

Issue 1702673002: DevTools: migrate remote debugging protocol generators to jinja2. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 4 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: third_party/WebKit/Source/modules/filesystem/InspectorFileSystemAgent.h
diff --git a/third_party/WebKit/Source/modules/filesystem/InspectorFileSystemAgent.h b/third_party/WebKit/Source/modules/filesystem/InspectorFileSystemAgent.h
index a72ce83c44317c028bf023869ee1c2cab875fb1e..6ededd4e89db94258661b407e0ec5eea4f05f776 100644
--- a/third_party/WebKit/Source/modules/filesystem/InspectorFileSystemAgent.h
+++ b/third_party/WebKit/Source/modules/filesystem/InspectorFileSystemAgent.h
@@ -53,7 +53,7 @@ public:
void requestFileSystemRoot(ErrorString*, const String& origin, const String& typeString, PassRefPtr<RequestFileSystemRootCallback>) override;
void requestDirectoryContent(ErrorString*, const String& url, PassRefPtr<RequestDirectoryContentCallback>) override;
void requestMetadata(ErrorString*, const String& url, PassRefPtr<RequestMetadataCallback>) override;
- void requestFileContent(ErrorString*, const String& url, bool readAsText, const int* start, const int* end, const String* charset, PassRefPtr<RequestFileContentCallback>) override;
+ void requestFileContent(ErrorString*, const String& url, bool readAsText, const OptionalValue<int>& start, const OptionalValue<int>& end, const OptionalValue<String>& charset, PassRefPtr<RequestFileContentCallback>) override;
void deleteEntry(ErrorString*, const String& url, PassRefPtr<DeleteEntryCallback>) override;
void disable(ErrorString*) override;

Powered by Google App Engine
This is Rietveld 408576698