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

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

Issue 72363002: Rename es => exceptionState in other than bindings/ (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Retry Created 7 years, 1 month 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
« no previous file with comments | « Source/modules/filesystem/EntrySync.cpp ('k') | Source/modules/filesystem/FileWriter.cpp » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/modules/filesystem/FileEntrySync.cpp
diff --git a/Source/modules/filesystem/FileEntrySync.cpp b/Source/modules/filesystem/FileEntrySync.cpp
index a8ced926bc634335f3c36fdb63554add956d1aac..ae80784c9c64987c59375f76b26c8105fcb06ae0 100644
--- a/Source/modules/filesystem/FileEntrySync.cpp
+++ b/Source/modules/filesystem/FileEntrySync.cpp
@@ -43,14 +43,14 @@ FileEntrySync::FileEntrySync(PassRefPtr<DOMFileSystemBase> fileSystem, const Str
ScriptWrappable::init(this);
}
-PassRefPtr<File> FileEntrySync::file(ExceptionState& es)
+PassRefPtr<File> FileEntrySync::file(ExceptionState& exceptionState)
{
- return filesystem()->createFile(this, es);
+ return filesystem()->createFile(this, exceptionState);
}
-PassRefPtr<FileWriterSync> FileEntrySync::createWriter(ExceptionState& es)
+PassRefPtr<FileWriterSync> FileEntrySync::createWriter(ExceptionState& exceptionState)
{
- return filesystem()->createWriter(this, es);
+ return filesystem()->createWriter(this, exceptionState);
}
}
« no previous file with comments | « Source/modules/filesystem/EntrySync.cpp ('k') | Source/modules/filesystem/FileWriter.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698