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

Unified Diff: content/browser/fileapi/fileapi_message_filter.cc

Issue 10973006: Semicolon is necessary for copying files. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 8 years, 3 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
« no previous file with comments | « no previous file | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: content/browser/fileapi/fileapi_message_filter.cc
diff --git a/content/browser/fileapi/fileapi_message_filter.cc b/content/browser/fileapi/fileapi_message_filter.cc
index 2237d55d6ecc57d7addbb44a47de4555bd5056d1..860ad9879e1a825b690a0dcf5b7915074dd7ec59 100644
--- a/content/browser/fileapi/fileapi_message_filter.cc
+++ b/content/browser/fileapi/fileapi_message_filter.cc
@@ -260,7 +260,7 @@ void FileAPIMessageFilter::OnCopy(
FileSystemOperation* operation = GetNewOperation(src_url, request_id);
if (!operation)
- return
+ return;
operation->Copy(
src_url, dest_url,
base::Bind(&FileAPIMessageFilter::DidFinish, this, request_id));
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698