OLD | NEW |
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_CHROMEOS_EXTENSIONS_FILE_MANAGER_FILE_BROWSER_PRIVATE_API
_H_ | 5 #ifndef CHROME_BROWSER_CHROMEOS_EXTENSIONS_FILE_MANAGER_FILE_BROWSER_PRIVATE_API
_H_ |
6 #define CHROME_BROWSER_CHROMEOS_EXTENSIONS_FILE_MANAGER_FILE_BROWSER_PRIVATE_API
_H_ | 6 #define CHROME_BROWSER_CHROMEOS_EXTENSIONS_FILE_MANAGER_FILE_BROWSER_PRIVATE_API
_H_ |
7 | 7 |
8 #include <map> | 8 #include <map> |
9 #include <queue> | 9 #include <queue> |
10 #include <string> | 10 #include <string> |
11 #include <vector> | 11 #include <vector> |
12 | 12 |
13 #include "base/memory/scoped_ptr.h" | 13 #include "base/memory/scoped_ptr.h" |
14 #include "base/platform_file.h" | 14 #include "base/platform_file.h" |
15 #include "base/prefs/pref_service.h" | 15 #include "base/prefs/pref_service.h" |
16 #include "base/time.h" | 16 #include "base/time/time.h" |
17 #include "chrome/browser/chromeos/drive/file_errors.h" | 17 #include "chrome/browser/chromeos/drive/file_errors.h" |
18 #include "chrome/browser/chromeos/drive/file_system_interface.h" | 18 #include "chrome/browser/chromeos/drive/file_system_interface.h" |
19 #include "chrome/browser/chromeos/extensions/file_manager/zip_file_creator.h" | 19 #include "chrome/browser/chromeos/extensions/file_manager/zip_file_creator.h" |
20 #include "chrome/browser/extensions/extension_function.h" | 20 #include "chrome/browser/extensions/extension_function.h" |
21 #include "components/browser_context_keyed_service/browser_context_keyed_service
.h" | 21 #include "components/browser_context_keyed_service/browser_context_keyed_service
.h" |
22 | 22 |
23 class FileManagerEventRouter; | 23 class FileManagerEventRouter; |
24 class GURL; | 24 class GURL; |
25 class Profile; | 25 class Profile; |
26 | 26 |
(...skipping 774 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
801 public: | 801 public: |
802 DECLARE_EXTENSION_FUNCTION("fileBrowserPrivate.zoom", | 802 DECLARE_EXTENSION_FUNCTION("fileBrowserPrivate.zoom", |
803 FILEBROWSERPRIVATE_ZOOM); | 803 FILEBROWSERPRIVATE_ZOOM); |
804 | 804 |
805 protected: | 805 protected: |
806 virtual ~ZoomFunction() {} | 806 virtual ~ZoomFunction() {} |
807 virtual bool RunImpl() OVERRIDE; | 807 virtual bool RunImpl() OVERRIDE; |
808 }; | 808 }; |
809 | 809 |
810 #endif // CHROME_BROWSER_CHROMEOS_EXTENSIONS_FILE_MANAGER_FILE_BROWSER_PRIVATE_
API_H_ | 810 #endif // CHROME_BROWSER_CHROMEOS_EXTENSIONS_FILE_MANAGER_FILE_BROWSER_PRIVATE_
API_H_ |
OLD | NEW |