diff options
author | mostynb <mostynb@opera.com> | 2014-09-11 01:39:24 -0700 |
---|---|---|
committer | Commit bot <commit-bot@chromium.org> | 2014-09-11 08:46:25 +0000 |
commit | 8bf5f9c78492317b0400ba2743b7d339a8ee81fa (patch) | |
tree | 091566da4e0467c82eee32e91befa08f43e2a9da /storage | |
parent | ab46b5e758e9f1f60c2bddaa79b85d4415773529 (diff) | |
download | chromium_src-8bf5f9c78492317b0400ba2743b7d339a8ee81fa.zip chromium_src-8bf5f9c78492317b0400ba2743b7d339a8ee81fa.tar.gz chromium_src-8bf5f9c78492317b0400ba2743b7d339a8ee81fa.tar.bz2 |
remove c++11 enum scope in copy_or_move_operation_delegate.cc
Followup to CL 469993007, which added a c++11 style enum scope,
but we haven't officially switched to c++11 yet.
BUG=360088
Review URL: https://codereview.chromium.org/562513005
Cr-Commit-Position: refs/heads/master@{#294358}
Diffstat (limited to 'storage')
-rw-r--r-- | storage/browser/fileapi/copy_or_move_operation_delegate.cc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/storage/browser/fileapi/copy_or_move_operation_delegate.cc b/storage/browser/fileapi/copy_or_move_operation_delegate.cc index 84244df..10955d9 100644 --- a/storage/browser/fileapi/copy_or_move_operation_delegate.cc +++ b/storage/browser/fileapi/copy_or_move_operation_delegate.cc @@ -799,7 +799,7 @@ void CopyOrMoveOperationDelegate::ProcessFile( (file_system_context() ->GetFileSystemBackend(src_url.type()) ->HasInplaceCopyImplementation(src_url.type()) || - operation_type_ == OperationType::OPERATION_MOVE)) { + operation_type_ == OPERATION_MOVE)) { impl = new CopyOrMoveOnSameFileSystemImpl( operation_runner(), operation_type_, src_url, dest_url, option_, base::Bind(&CopyOrMoveOperationDelegate::OnCopyFileProgress, |