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

Side by Side Diff: chrome/browser/chromeos/file_manager/file_browser_handlers.h

Issue 1547093002: Switch to standard integer types in chrome/browser/chromeos/. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 4 years, 12 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 2013 The Chromium Authors. All rights reserved. 1 // Copyright 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 // 4 //
5 // This file provides utility functions for file browser handlers. 5 // This file provides utility functions for file browser handlers.
6 // https://developer.chrome.com/extensions/fileBrowserHandler.html 6 // https://developer.chrome.com/extensions/fileBrowserHandler.html
7 7
8 #ifndef CHROME_BROWSER_CHROMEOS_FILE_MANAGER_FILE_BROWSER_HANDLERS_H_ 8 #ifndef CHROME_BROWSER_CHROMEOS_FILE_MANAGER_FILE_BROWSER_HANDLERS_H_
9 #define CHROME_BROWSER_CHROMEOS_FILE_MANAGER_FILE_BROWSER_HANDLERS_H_ 9 #define CHROME_BROWSER_CHROMEOS_FILE_MANAGER_FILE_BROWSER_HANDLERS_H_
10 10
11 #include <string> 11 #include <string>
12 #include <vector> 12 #include <vector>
13 13
14 #include "base/basictypes.h"
15 #include "base/callback_forward.h" 14 #include "base/callback_forward.h"
16 #include "chrome/browser/chromeos/file_manager/file_tasks.h" 15 #include "chrome/browser/chromeos/file_manager/file_tasks.h"
17 16
18 class FileBrowserHandler; 17 class FileBrowserHandler;
19 class GURL; 18 class GURL;
20 class Profile; 19 class Profile;
21 20
22 namespace extensions { 21 namespace extensions {
23 class Extension; 22 class Extension;
24 } 23 }
(...skipping 22 matching lines...) Expand all
47 Profile* profile, 46 Profile* profile,
48 const extensions::Extension* extension, 47 const extensions::Extension* extension,
49 const std::string& action_id, 48 const std::string& action_id,
50 const std::vector<storage::FileSystemURL>& file_urls, 49 const std::vector<storage::FileSystemURL>& file_urls,
51 const file_tasks::FileTaskFinishedCallback& done); 50 const file_tasks::FileTaskFinishedCallback& done);
52 51
53 } // namespace file_browser_handlers 52 } // namespace file_browser_handlers
54 } // namespace file_manager 53 } // namespace file_manager
55 54
56 #endif // CHROME_BROWSER_CHROMEOS_FILE_MANAGER_FILE_BROWSER_HANDLERS_H_ 55 #endif // CHROME_BROWSER_CHROMEOS_FILE_MANAGER_FILE_BROWSER_HANDLERS_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698