OLD | NEW |
1 // Copyright 2013 The Chromium Authors. All rights reserved. | 1 // Copyright 2013 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/private_api_mount.h" | 5 #include "chrome/browser/chromeos/extensions/file_manager/private_api_mount.h" |
6 | 6 |
7 #include "base/format_macros.h" | 7 #include "base/format_macros.h" |
8 #include "base/values.h" | 8 #include "base/values.h" |
9 #include "chrome/browser/chromeos/drive/drive_integration_service.h" | 9 #include "chrome/browser/chromeos/drive/drive_integration_service.h" |
10 #include "chrome/browser/chromeos/drive/file_system_interface.h" | 10 #include "chrome/browser/chromeos/drive/file_system_interface.h" |
11 #include "chrome/browser/chromeos/drive/file_system_util.h" | 11 #include "chrome/browser/chromeos/drive/file_system_util.h" |
12 #include "chrome/browser/chromeos/drive/logging.h" | 12 #include "chrome/browser/chromeos/drive/logging.h" |
| 13 #include "chrome/browser/chromeos/extensions/file_manager/event_router.h" |
13 #include "chrome/browser/chromeos/extensions/file_manager/file_browser_private_a
pi.h" | 14 #include "chrome/browser/chromeos/extensions/file_manager/file_browser_private_a
pi.h" |
14 #include "chrome/browser/chromeos/extensions/file_manager/file_manager_event_rou
ter.h" | |
15 #include "chrome/browser/chromeos/extensions/file_manager/file_manager_util.h" | 15 #include "chrome/browser/chromeos/extensions/file_manager/file_manager_util.h" |
16 #include "chrome/browser/chromeos/extensions/file_manager/private_api_util.h" | 16 #include "chrome/browser/chromeos/extensions/file_manager/private_api_util.h" |
17 #include "chrome/browser/profiles/profile.h" | 17 #include "chrome/browser/profiles/profile.h" |
18 #include "chromeos/disks/disk_mount_manager.h" | 18 #include "chromeos/disks/disk_mount_manager.h" |
19 #include "content/public/browser/browser_thread.h" | 19 #include "content/public/browser/browser_thread.h" |
20 #include "ui/shell_dialogs/selected_file_info.h" | 20 #include "ui/shell_dialogs/selected_file_info.h" |
21 | 21 |
22 using chromeos::disks::DiskMountManager; | 22 using chromeos::disks::DiskMountManager; |
23 using content::BrowserThread; | 23 using content::BrowserThread; |
24 | 24 |
(...skipping 236 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
261 name().c_str(), | 261 name().c_str(), |
262 request_id(), | 262 request_id(), |
263 log_string.c_str(), | 263 log_string.c_str(), |
264 mount_points.size()); | 264 mount_points.size()); |
265 | 265 |
266 SendResponse(true); | 266 SendResponse(true); |
267 return true; | 267 return true; |
268 } | 268 } |
269 | 269 |
270 } // namespace file_manager | 270 } // namespace file_manager |
OLD | NEW |