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_BROWSER_PRIVATE_API_H_ | 5 #ifndef CHROME_BROWSER_CHROMEOS_EXTENSIONS_FILE_BROWSER_PRIVATE_API_H_ |
6 #define CHROME_BROWSER_CHROMEOS_EXTENSIONS_FILE_BROWSER_PRIVATE_API_H_ | 6 #define CHROME_BROWSER_CHROMEOS_EXTENSIONS_FILE_BROWSER_PRIVATE_API_H_ |
7 #pragma once | 7 #pragma once |
8 | 8 |
9 #include <map> | 9 #include <map> |
10 #include <string> | 10 #include <string> |
(...skipping 497 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
508 public: | 508 public: |
509 CancelFileTransfersFunction(); | 509 CancelFileTransfersFunction(); |
510 virtual ~CancelFileTransfersFunction(); | 510 virtual ~CancelFileTransfersFunction(); |
511 | 511 |
512 protected: | 512 protected: |
513 // AsyncExtensionFunction overrides. | 513 // AsyncExtensionFunction overrides. |
514 virtual bool RunImpl() OVERRIDE; | 514 virtual bool RunImpl() OVERRIDE; |
515 | 515 |
516 void GetLocalPathsResponseOnUIThread(const SelectedFileInfoList& files); | 516 void GetLocalPathsResponseOnUIThread(const SelectedFileInfoList& files); |
517 private: | 517 private: |
518 DECLARE_EXTENSION_FUNCTION_NAME("fileBrowserPrivate.cancelTransfers"); | 518 DECLARE_EXTENSION_FUNCTION_NAME("fileBrowserPrivate.cancelFileTransfers"); |
519 }; | 519 }; |
520 | 520 |
521 #endif // CHROME_BROWSER_CHROMEOS_EXTENSIONS_FILE_BROWSER_PRIVATE_API_H_ | 521 #endif // CHROME_BROWSER_CHROMEOS_EXTENSIONS_FILE_BROWSER_PRIVATE_API_H_ |
OLD | NEW |