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 | 4 |
5 #ifndef CHROME_BROWSER_CHROMEOS_EXTENSIONS_FILE_MANAGER_UTIL_H_ | 5 #ifndef CHROME_BROWSER_CHROMEOS_EXTENSIONS_FILE_MANAGER_FILE_MANAGER_UTIL_H_ |
6 #define CHROME_BROWSER_CHROMEOS_EXTENSIONS_FILE_MANAGER_UTIL_H_ | 6 #define CHROME_BROWSER_CHROMEOS_EXTENSIONS_FILE_MANAGER_FILE_MANAGER_UTIL_H_ |
7 | 7 |
8 #include <string> | 8 #include <string> |
9 | 9 |
10 #include "base/files/file_path.h" | 10 #include "base/files/file_path.h" |
11 #include "chrome/browser/google_apis/operation_registry.h" | 11 #include "chrome/browser/google_apis/operation_registry.h" |
12 #include "googleurl/src/gurl.h" | 12 #include "googleurl/src/gurl.h" |
13 #include "ui/shell_dialogs/select_file_dialog.h" | 13 #include "ui/shell_dialogs/select_file_dialog.h" |
14 | 14 |
15 class Browser; | 15 class Browser; |
16 class Profile; | 16 class Profile; |
(...skipping 79 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
96 bool ShouldBeOpenedWithPlugin(Profile* profile, const char* file_extension); | 96 bool ShouldBeOpenedWithPlugin(Profile* profile, const char* file_extension); |
97 | 97 |
98 // Converts the vector of progress status to their JSON (Value) form. | 98 // Converts the vector of progress status to their JSON (Value) form. |
99 base::ListValue* ProgressStatusVectorToListValue( | 99 base::ListValue* ProgressStatusVectorToListValue( |
100 Profile* profile, | 100 Profile* profile, |
101 const std::string& extension_id, | 101 const std::string& extension_id, |
102 const google_apis::OperationProgressStatusList& list); | 102 const google_apis::OperationProgressStatusList& list); |
103 | 103 |
104 } // namespace file_manager_util | 104 } // namespace file_manager_util |
105 | 105 |
106 #endif // CHROME_BROWSER_CHROMEOS_EXTENSIONS_FILE_MANAGER_UTIL_H_ | 106 #endif // CHROME_BROWSER_CHROMEOS_EXTENSIONS_FILE_MANAGER_FILE_MANAGER_UTIL_H_ |
OLD | NEW |