Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(84)

Side by Side Diff: win8/metro_driver/file_picker_ash.h

Issue 1540973003: Switch to standard integer types in win8/. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 5 years ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« no previous file with comments | « win8/metro_driver/file_picker.cc ('k') | win8/metro_driver/file_picker_ash.cc » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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"
10 #include "base/compiler_specific.h" 9 #include "base/compiler_specific.h"
11 #include "base/files/file_path.h" 10 #include "base/files/file_path.h"
11 #include "base/macros.h"
12 #include "base/strings/string16.h" 12 #include "base/strings/string16.h"
13 13
14 class ChromeAppViewAsh; 14 class ChromeAppViewAsh;
15 struct MetroViewerHostMsg_SaveAsDialogParams; 15 struct MetroViewerHostMsg_SaveAsDialogParams;
16 16
17 namespace base { 17 namespace base {
18 class FilePath; 18 class FilePath;
19 } 19 }
20 20
21 // Base class for the file pickers. 21 // Base class for the file pickers.
(...skipping 126 matching lines...) Expand 10 before | Expand all | Expand 10 after
148 FolderPickerAsyncOp; 148 FolderPickerAsyncOp;
149 149
150 // Called asynchronously when the folder picker is done. 150 // Called asynchronously when the folder picker is done.
151 HRESULT FolderPickerDone(FolderPickerAsyncOp* async, AsyncStatus status); 151 HRESULT FolderPickerDone(FolderPickerAsyncOp* async, AsyncStatus status);
152 152
153 DISALLOW_COPY_AND_ASSIGN(FolderPickerSession); 153 DISALLOW_COPY_AND_ASSIGN(FolderPickerSession);
154 }; 154 };
155 155
156 #endif // CHROME_BROWSER_UI_METRO_DRIVER_FILE_PICKER_ASH_H_ 156 #endif // CHROME_BROWSER_UI_METRO_DRIVER_FILE_PICKER_ASH_H_
157 157
OLDNEW
« no previous file with comments | « win8/metro_driver/file_picker.cc ('k') | win8/metro_driver/file_picker_ash.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698