OLD | NEW |
1 // Copyright (c) 2013 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 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 #ifndef CHROME_BROWSER_UI_METRO_DRIVER_FILE_PICKER_ASH_H_ | 4 #ifndef CHROME_BROWSER_UI_METRO_DRIVER_FILE_PICKER_ASH_H_ |
5 #define CHROME_BROWSER_UI_METRO_DRIVER_FILE_PICKER_ASH_H_ | 5 #define CHROME_BROWSER_UI_METRO_DRIVER_FILE_PICKER_ASH_H_ |
6 | 6 |
7 #include <vector> | 7 #include <vector> |
8 | 8 |
9 #include "base/basictypes.h" | 9 #include "base/basictypes.h" |
10 #include "base/compiler_specific.h" | 10 #include "base/compiler_specific.h" |
11 #include "base/string16.h" | 11 #include "base/strings/string16.h" |
12 | 12 |
13 class ChromeAppViewAsh; | 13 class ChromeAppViewAsh; |
14 struct MetroViewerHostMsg_SaveAsDialogParams; | 14 struct MetroViewerHostMsg_SaveAsDialogParams; |
15 | 15 |
16 namespace base { | 16 namespace base { |
17 class FilePath; | 17 class FilePath; |
18 } | 18 } |
19 | 19 |
20 // Base class for the file pickers. | 20 // Base class for the file pickers. |
21 class FilePickerSessionBase { | 21 class FilePickerSessionBase { |
(...skipping 135 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
157 FolderPickerAsyncOp; | 157 FolderPickerAsyncOp; |
158 | 158 |
159 // Called asynchronously when the folder picker is done. | 159 // Called asynchronously when the folder picker is done. |
160 HRESULT FolderPickerDone(FolderPickerAsyncOp* async, AsyncStatus status); | 160 HRESULT FolderPickerDone(FolderPickerAsyncOp* async, AsyncStatus status); |
161 | 161 |
162 DISALLOW_COPY_AND_ASSIGN(FolderPickerSession); | 162 DISALLOW_COPY_AND_ASSIGN(FolderPickerSession); |
163 }; | 163 }; |
164 | 164 |
165 #endif // CHROME_BROWSER_UI_METRO_DRIVER_FILE_PICKER_ASH_H_ | 165 #endif // CHROME_BROWSER_UI_METRO_DRIVER_FILE_PICKER_ASH_H_ |
166 | 166 |
OLD | NEW |