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

Unified Diff: webkit/tools/test_shell/simple_file_writer.cc

Issue 6731033: Remove the path from PlatformFileInfo; it's cleaner just to pass it along as a (Closed) Base URL: svn://chrome-svn/chrome/trunk/src/
Patch Set: '' Created 9 years, 9 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: webkit/tools/test_shell/simple_file_writer.cc
===================================================================
--- webkit/tools/test_shell/simple_file_writer.cc (revision 79323)
+++ webkit/tools/test_shell/simple_file_writer.cc (working copy)
@@ -104,7 +104,9 @@
proxy_->DidWrite(bytes, complete);
}
- virtual void DidReadMetadata(const base::PlatformFileInfo&) {
+ virtual void DidReadMetadata(
+ const base::PlatformFileInfo&,
+ const FilePath&) {
NOTREACHED();
}
@@ -114,8 +116,9 @@
NOTREACHED();
}
- virtual void DidOpenFileSystem(const std::string& name,
- const FilePath& root_path) {
+ virtual void DidOpenFileSystem(
+ const std::string& name,
+ const FilePath& root_path) {
NOTREACHED();
}
« webkit/plugins/ppapi/file_callbacks.h ('K') | « webkit/tools/test_shell/simple_file_system.cc ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698