OLD | NEW |
1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2012 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 #include "chrome/browser/chromeos/extensions/file_manager_util.h" | 4 #include "chrome/browser/chromeos/extensions/file_manager_util.h" |
5 | 5 |
6 #include "base/bind.h" | 6 #include "base/bind.h" |
7 #include "base/file_util.h" | 7 #include "base/file_util.h" |
8 #include "base/json/json_reader.h" | 8 #include "base/json/json_reader.h" |
9 #include "base/json/json_writer.h" | 9 #include "base/json/json_writer.h" |
10 #include "base/logging.h" | 10 #include "base/logging.h" |
11 #include "base/metrics/histogram.h" | 11 #include "base/metrics/histogram.h" |
12 #include "base/path_service.h" | 12 #include "base/path_service.h" |
13 #include "base/string_util.h" | 13 #include "base/string_util.h" |
14 #include "base/utf_string_conversions.h" | 14 #include "base/utf_string_conversions.h" |
15 #include "base/values.h" | 15 #include "base/values.h" |
16 #include "chrome/browser/chromeos/extensions/file_handler_util.h" | 16 #include "chrome/browser/chromeos/extensions/file_handler_util.h" |
17 #include "chrome/browser/chromeos/gdata/drive.pb.h" | 17 #include "chrome/browser/chromeos/gdata/drive.pb.h" |
| 18 #include "chrome/browser/chromeos/gdata/drive_file_system.h" |
18 #include "chrome/browser/chromeos/gdata/drive_files.h" | 19 #include "chrome/browser/chromeos/gdata/drive_files.h" |
19 #include "chrome/browser/chromeos/gdata/gdata_file_system.h" | |
20 #include "chrome/browser/chromeos/gdata/gdata_system_service.h" | 20 #include "chrome/browser/chromeos/gdata/gdata_system_service.h" |
21 #include "chrome/browser/chromeos/gdata/gdata_util.h" | 21 #include "chrome/browser/chromeos/gdata/gdata_util.h" |
22 #include "chrome/browser/chromeos/gdata/operation_registry.h" | 22 #include "chrome/browser/chromeos/gdata/operation_registry.h" |
23 #include "chrome/browser/chromeos/media/media_player.h" | 23 #include "chrome/browser/chromeos/media/media_player.h" |
24 #include "chrome/browser/extensions/crx_installer.h" | 24 #include "chrome/browser/extensions/crx_installer.h" |
25 #include "chrome/browser/extensions/extension_install_prompt.h" | 25 #include "chrome/browser/extensions/extension_install_prompt.h" |
26 #include "chrome/browser/extensions/extension_service.h" | 26 #include "chrome/browser/extensions/extension_service.h" |
27 #include "chrome/browser/plugin_prefs.h" | 27 #include "chrome/browser/plugin_prefs.h" |
28 #include "chrome/browser/profiles/profile.h" | 28 #include "chrome/browser/profiles/profile.h" |
29 #include "chrome/browser/profiles/profile_manager.h" | 29 #include "chrome/browser/profiles/profile_manager.h" |
(...skipping 719 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
749 OperationRegistry::ProgressStatus>::const_iterator iter = | 749 OperationRegistry::ProgressStatus>::const_iterator iter = |
750 list.begin(); | 750 list.begin(); |
751 iter != list.end(); ++iter) { | 751 iter != list.end(); ++iter) { |
752 result_list->Append( | 752 result_list->Append( |
753 ProgessStatusToDictionaryValue(profile, origin_url, *iter)); | 753 ProgessStatusToDictionaryValue(profile, origin_url, *iter)); |
754 } | 754 } |
755 return result_list.release(); | 755 return result_list.release(); |
756 } | 756 } |
757 | 757 |
758 } // namespace file_manager_util | 758 } // namespace file_manager_util |
OLD | NEW |