| OLD | NEW |
| 1 // Copyright 2014 The Chromium Authors. All rights reserved. | 1 // Copyright 2014 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_UTILITY_EXTENSIONS_EXTENSIONS_HANDLER_H_ | 5 #ifndef CHROME_UTILITY_EXTENSIONS_EXTENSIONS_HANDLER_H_ |
| 6 #define CHROME_UTILITY_EXTENSIONS_EXTENSIONS_HANDLER_H_ | 6 #define CHROME_UTILITY_EXTENSIONS_EXTENSIONS_HANDLER_H_ |
| 7 | 7 |
| 8 #include <stdint.h> | 8 #include <stdint.h> |
| 9 | 9 |
| 10 #include "base/base64.h" | 10 #include "base/base64.h" |
| (...skipping 49 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 60 const IPC::PlatformFileForTransit& itunes_library_file); | 60 const IPC::PlatformFileForTransit& itunes_library_file); |
| 61 | 61 |
| 62 void OnParsePicasaPMPDatabase( | 62 void OnParsePicasaPMPDatabase( |
| 63 const picasa::AlbumTableFilesForTransit& album_table_files); | 63 const picasa::AlbumTableFilesForTransit& album_table_files); |
| 64 | 64 |
| 65 void OnIndexPicasaAlbumsContents( | 65 void OnIndexPicasaAlbumsContents( |
| 66 const picasa::AlbumUIDSet& album_uids, | 66 const picasa::AlbumUIDSet& album_uids, |
| 67 const std::vector<picasa::FolderINIContents>& folders_inis); | 67 const std::vector<picasa::FolderINIContents>& folders_inis); |
| 68 #endif // defined(OS_WIN) || defined(OS_MACOSX) | 68 #endif // defined(OS_WIN) || defined(OS_MACOSX) |
| 69 | 69 |
| 70 #if defined(OS_WIN) | |
| 71 void OnGetWiFiCredentials(const std::string& network_guid); | |
| 72 #endif // defined(OS_WIN) | |
| 73 | |
| 74 UtilityHandler utility_handler_; | 70 UtilityHandler utility_handler_; |
| 75 | 71 |
| 76 DISALLOW_COPY_AND_ASSIGN(ExtensionsHandler); | 72 DISALLOW_COPY_AND_ASSIGN(ExtensionsHandler); |
| 77 }; | 73 }; |
| 78 | 74 |
| 79 } // namespace extensions | 75 } // namespace extensions |
| 80 | 76 |
| 81 #endif // CHROME_UTILITY_EXTENSIONS_EXTENSIONS_HANDLER_H_ | 77 #endif // CHROME_UTILITY_EXTENSIONS_EXTENSIONS_HANDLER_H_ |
| OLD | NEW |