Commit 8bf5f9c7 authored by mostynb's avatar mostynb Committed by Commit bot

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}
parent ab46b5e7
...@@ -799,7 +799,7 @@ void CopyOrMoveOperationDelegate::ProcessFile( ...@@ -799,7 +799,7 @@ void CopyOrMoveOperationDelegate::ProcessFile(
(file_system_context() (file_system_context()
->GetFileSystemBackend(src_url.type()) ->GetFileSystemBackend(src_url.type())
->HasInplaceCopyImplementation(src_url.type()) || ->HasInplaceCopyImplementation(src_url.type()) ||
operation_type_ == OperationType::OPERATION_MOVE)) { operation_type_ == OPERATION_MOVE)) {
impl = new CopyOrMoveOnSameFileSystemImpl( impl = new CopyOrMoveOnSameFileSystemImpl(
operation_runner(), operation_type_, src_url, dest_url, option_, operation_runner(), operation_type_, src_url, dest_url, option_,
base::Bind(&CopyOrMoveOperationDelegate::OnCopyFileProgress, base::Bind(&CopyOrMoveOperationDelegate::OnCopyFileProgress,
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment