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 "base/base64.h" | 8 #include "base/base64.h" |
9 #include "base/compiler_specific.h" | 9 #include "base/compiler_specific.h" |
10 #include "base/json/json_reader.h" | 10 #include "base/json/json_reader.h" |
(...skipping 50 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
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) | 70 #if defined(OS_WIN) |
71 void OnGetAndEncryptWiFiCredentials(const std::string& network_guid, | 71 void OnGetWiFiCredentials(const std::string& network_guid); |
72 const std::vector<uint8>& public_key); | |
73 #endif // defined(OS_WIN) | 72 #endif // defined(OS_WIN) |
74 | 73 |
75 DISALLOW_COPY_AND_ASSIGN(ExtensionsHandler); | 74 DISALLOW_COPY_AND_ASSIGN(ExtensionsHandler); |
76 }; | 75 }; |
77 | 76 |
78 } // namespace extensions | 77 } // namespace extensions |
79 | 78 |
80 #endif // CHROME_UTILITY_EXTENSIONS_EXTENSIONS_HANDLER_H_ | 79 #endif // CHROME_UTILITY_EXTENSIONS_EXTENSIONS_HANDLER_H_ |
OLD | NEW |