OLD | NEW |
1 // Copyright (c) 2011 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2011 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_EXTENSIONS_FILE_MANAGER_UTIL_H_ |
6 #define CHROME_BROWSER_CHROMEOS_EXTENSIONS_FILE_MANAGER_UTIL_H_ | 6 #define CHROME_BROWSER_EXTENSIONS_FILE_MANAGER_UTIL_H_ |
7 #pragma once | 7 #pragma once |
8 | 8 |
9 #include <string> | 9 #include <string> |
10 | 10 |
11 #include "base/file_path.h" | 11 #include "base/file_path.h" |
12 #include "chrome/browser/ui/select_file_dialog.h" | 12 #include "chrome/browser/ui/select_file_dialog.h" |
13 #include "googleurl/src/gurl.h" | 13 #include "googleurl/src/gurl.h" |
14 | 14 |
15 class Profile; | 15 class Profile; |
16 | 16 |
(...skipping 29 matching lines...) Expand all Loading... |
46 const FilePath::StringType& default_extension); | 46 const FilePath::StringType& default_extension); |
47 | 47 |
48 // Opens file browser UI in its own tab on file system location defined with | 48 // Opens file browser UI in its own tab on file system location defined with |
49 // |dir|. | 49 // |dir|. |
50 void ViewFolder(const FilePath& dir); | 50 void ViewFolder(const FilePath& dir); |
51 | 51 |
52 void ViewItem(const FilePath& full_path, bool enqueue); | 52 void ViewItem(const FilePath& full_path, bool enqueue); |
53 | 53 |
54 } // namespace file_manager_util | 54 } // namespace file_manager_util |
55 | 55 |
56 #endif // CHROME_BROWSER_CHROMEOS_EXTENSIONS_FILE_MANAGER_UTIL_H_ | 56 #endif // CHROME_BROWSER_EXTENSIONS_FILE_MANAGER_UTIL_H_ |
OLD | NEW |