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

Side by Side Diff: chrome/browser/chromeos/extensions/file_manager/job_event_router.cc

Issue 1967773004: Fix include path for moved thread_task_runner_handle.h header in chrome/ (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@a1_move_task_runner_handle
Patch Set: merge up to r393013 Created 4 years, 7 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 2015 The Chromium Authors. All rights reserved. 1 // Copyright 2015 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/extensions/file_manager/job_event_router.h" 5 #include "chrome/browser/chromeos/extensions/file_manager/job_event_router.h"
6 6
7 #include <cmath> 7 #include <cmath>
8 8
9 #include "base/thread_task_runner_handle.h" 9 #include "base/threading/thread_task_runner_handle.h"
10 #include "chrome/browser/chromeos/file_manager/app_id.h" 10 #include "chrome/browser/chromeos/file_manager/app_id.h"
11 #include "chrome/browser/profiles/profile.h" 11 #include "chrome/browser/profiles/profile.h"
12 #include "components/drive/file_system_core_util.h" 12 #include "components/drive/file_system_core_util.h"
13 #include "content/public/browser/browser_thread.h" 13 #include "content/public/browser/browser_thread.h"
14 14
15 using content::BrowserThread; 15 using content::BrowserThread;
16 namespace file_manager_private = extensions::api::file_manager_private; 16 namespace file_manager_private = extensions::api::file_manager_private;
17 17
18 namespace file_manager { 18 namespace file_manager {
19 19
(...skipping 130 matching lines...) Expand 10 before | Expand all | Expand 10 after
150 status.total = num_total_bytes; 150 status.total = num_total_bytes;
151 151
152 DispatchEventToExtension( 152 DispatchEventToExtension(
153 extension_id, 153 extension_id,
154 extensions::events::FILE_MANAGER_PRIVATE_ON_FILE_TRANSFERS_UPDATED, 154 extensions::events::FILE_MANAGER_PRIVATE_ON_FILE_TRANSFERS_UPDATED,
155 file_manager_private::OnFileTransfersUpdated::kEventName, 155 file_manager_private::OnFileTransfersUpdated::kEventName,
156 file_manager_private::OnFileTransfersUpdated::Create(status)); 156 file_manager_private::OnFileTransfersUpdated::Create(status));
157 } 157 }
158 158
159 } // namespace file_manager 159 } // namespace file_manager
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698