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

Side by Side Diff: chrome/browser/file_select_helper.h

Issue 1550593002: Switch to standard integer types in chrome/browser/, part 2 of 4. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 4 years, 11 months 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
OLDNEW
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_FILE_SELECT_HELPER_H_ 5 #ifndef CHROME_BROWSER_FILE_SELECT_HELPER_H_
6 #define CHROME_BROWSER_FILE_SELECT_HELPER_H_ 6 #define CHROME_BROWSER_FILE_SELECT_HELPER_H_
7 7
8 #include <map> 8 #include <map>
9 #include <vector> 9 #include <vector>
10 10
11 #include "base/compiler_specific.h" 11 #include "base/compiler_specific.h"
12 #include "base/gtest_prod_util.h" 12 #include "base/gtest_prod_util.h"
13 #include "base/macros.h"
13 #include "base/memory/scoped_ptr.h" 14 #include "base/memory/scoped_ptr.h"
15 #include "build/build_config.h"
14 #include "content/public/browser/notification_observer.h" 16 #include "content/public/browser/notification_observer.h"
15 #include "content/public/browser/notification_registrar.h" 17 #include "content/public/browser/notification_registrar.h"
16 #include "content/public/browser/web_contents_observer.h" 18 #include "content/public/browser/web_contents_observer.h"
17 #include "content/public/common/file_chooser_params.h" 19 #include "content/public/common/file_chooser_params.h"
18 #include "net/base/directory_lister.h" 20 #include "net/base/directory_lister.h"
19 #include "ui/shell_dialogs/select_file_dialog.h" 21 #include "ui/shell_dialogs/select_file_dialog.h"
20 22
21 #if defined(FULL_SAFE_BROWSING) 23 #if defined(FULL_SAFE_BROWSING)
22 #include "chrome/browser/safe_browsing/unverified_download_policy.h" 24 #include "chrome/browser/safe_browsing/unverified_download_policy.h"
23 #endif 25 #endif
(...skipping 210 matching lines...) Expand 10 before | Expand all | Expand 10 after
234 content::NotificationRegistrar notification_registrar_; 236 content::NotificationRegistrar notification_registrar_;
235 237
236 // Temporary files only used on OSX. This class is responsible for deleting 238 // Temporary files only used on OSX. This class is responsible for deleting
237 // these files when they are no longer needed. 239 // these files when they are no longer needed.
238 std::vector<base::FilePath> temporary_files_; 240 std::vector<base::FilePath> temporary_files_;
239 241
240 DISALLOW_COPY_AND_ASSIGN(FileSelectHelper); 242 DISALLOW_COPY_AND_ASSIGN(FileSelectHelper);
241 }; 243 };
242 244
243 #endif // CHROME_BROWSER_FILE_SELECT_HELPER_H_ 245 #endif // CHROME_BROWSER_FILE_SELECT_HELPER_H_
OLDNEW
« no previous file with comments | « chrome/browser/feedback/system_logs/system_logs_fetcher_base.h ('k') | chrome/browser/file_select_helper.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698