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/file_manager_util.h" |
5 | 5 |
6 #include "ash/shell.h" | 6 #include "ash/shell.h" |
7 #include "base/bind.h" | 7 #include "base/bind.h" |
8 #include "base/command_line.h" | 8 #include "base/command_line.h" |
9 #include "base/file_util.h" | 9 #include "base/file_util.h" |
10 #include "base/json/json_reader.h" | 10 #include "base/json/json_reader.h" |
11 #include "base/json/json_writer.h" | 11 #include "base/json/json_writer.h" |
12 #include "base/logging.h" | 12 #include "base/logging.h" |
13 #include "base/metrics/histogram.h" | 13 #include "base/metrics/histogram.h" |
14 #include "base/path_service.h" | 14 #include "base/path_service.h" |
(...skipping 990 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1005 for (google_apis::OperationProgressStatusList::const_iterator iter = | 1005 for (google_apis::OperationProgressStatusList::const_iterator iter = |
1006 list.begin(); | 1006 list.begin(); |
1007 iter != list.end(); ++iter) { | 1007 iter != list.end(); ++iter) { |
1008 result_list->Append( | 1008 result_list->Append( |
1009 ProgessStatusToDictionaryValue(profile, extension_id, *iter)); | 1009 ProgessStatusToDictionaryValue(profile, extension_id, *iter)); |
1010 } | 1010 } |
1011 return result_list.release(); | 1011 return result_list.release(); |
1012 } | 1012 } |
1013 | 1013 |
1014 } // namespace file_manager_util | 1014 } // namespace file_manager_util |
OLD | NEW |