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

Side by Side Diff: chrome/browser/chromeos/file_system_provider/operations/write_file.cc

Issue 877323002: Mechanical rename of tracing includes for /chrome (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 5 years, 10 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 unified diff | Download patch
OLDNEW
1 // Copyright 2014 The Chromium Authors. All rights reserved. 1 // Copyright 2014 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be 2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file. 3 // found in the LICENSE file.
4 4
5 #include "chrome/browser/chromeos/file_system_provider/operations/write_file.h" 5 #include "chrome/browser/chromeos/file_system_provider/operations/write_file.h"
6 6
7 #include "base/debug/trace_event.h" 7 #include "base/trace_event/trace_event.h"
8 #include "base/values.h" 8 #include "base/values.h"
9 #include "chrome/common/extensions/api/file_system_provider.h" 9 #include "chrome/common/extensions/api/file_system_provider.h"
10 #include "chrome/common/extensions/api/file_system_provider_internal.h" 10 #include "chrome/common/extensions/api/file_system_provider_internal.h"
11 11
12 namespace chromeos { 12 namespace chromeos {
13 namespace file_system_provider { 13 namespace file_system_provider {
14 namespace operations { 14 namespace operations {
15 15
16 WriteFile::WriteFile(extensions::EventRouter* event_router, 16 WriteFile::WriteFile(extensions::EventRouter* event_router,
17 const ProvidedFileSystemInfo& file_system_info, 17 const ProvidedFileSystemInfo& file_system_info,
(...skipping 53 matching lines...) Expand 10 before | Expand all | Expand 10 after
71 void WriteFile::OnError(int /* request_id */, 71 void WriteFile::OnError(int /* request_id */,
72 scoped_ptr<RequestValue> /* result */, 72 scoped_ptr<RequestValue> /* result */,
73 base::File::Error error) { 73 base::File::Error error) {
74 TRACE_EVENT0("file_system_provider", "WriteFile::OnError"); 74 TRACE_EVENT0("file_system_provider", "WriteFile::OnError");
75 callback_.Run(error); 75 callback_.Run(error);
76 } 76 }
77 77
78 } // namespace operations 78 } // namespace operations
79 } // namespace file_system_provider 79 } // namespace file_system_provider
80 } // namespace chromeos 80 } // namespace chromeos
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698