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_UTILITY_CHROME_CONTENT_UTILITY_CLIENT_H_ | 5 #ifndef CHROME_UTILITY_CHROME_CONTENT_UTILITY_CLIENT_H_ |
6 #define CHROME_UTILITY_CHROME_CONTENT_UTILITY_CLIENT_H_ | 6 #define CHROME_UTILITY_CHROME_CONTENT_UTILITY_CLIENT_H_ |
7 | 7 |
8 #include "base/compiler_specific.h" | 8 #include "base/compiler_specific.h" |
9 #include "base/memory/scoped_ptr.h" | 9 #include "base/memory/scoped_ptr.h" |
10 #include "base/memory/scoped_vector.h" | 10 #include "base/memory/scoped_vector.h" |
(...skipping 103 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
114 const IPC::PlatformFileForTransit& itunes_library_file); | 114 const IPC::PlatformFileForTransit& itunes_library_file); |
115 | 115 |
116 void OnParsePicasaPMPDatabase( | 116 void OnParsePicasaPMPDatabase( |
117 const picasa::AlbumTableFilesForTransit& album_table_files); | 117 const picasa::AlbumTableFilesForTransit& album_table_files); |
118 | 118 |
119 void OnIndexPicasaAlbumsContents( | 119 void OnIndexPicasaAlbumsContents( |
120 const picasa::AlbumUIDSet& album_uids, | 120 const picasa::AlbumUIDSet& album_uids, |
121 const std::vector<picasa::FolderINIContents>& folders_inis); | 121 const std::vector<picasa::FolderINIContents>& folders_inis); |
122 #endif // defined(OS_WIN) || defined(OS_MACOSX) | 122 #endif // defined(OS_WIN) || defined(OS_MACOSX) |
123 | 123 |
| 124 #if defined(OS_WIN) |
| 125 void OnGetAndEncryptWiFiPassphrase(int32 callback_id, |
| 126 const std::string& network_guid, |
| 127 const std::string& public_key); |
| 128 #endif // defined(OS_WIN) |
| 129 |
124 typedef ScopedVector<UtilityMessageHandler> Handlers; | 130 typedef ScopedVector<UtilityMessageHandler> Handlers; |
125 Handlers handlers_; | 131 Handlers handlers_; |
126 | 132 |
127 #if !defined(OS_ANDROID) && !defined(OS_IOS) | 133 #if !defined(OS_ANDROID) && !defined(OS_IOS) |
128 scoped_ptr<metadata::MediaMetadataParser> media_metadata_parser_; | 134 scoped_ptr<metadata::MediaMetadataParser> media_metadata_parser_; |
129 #endif // !defined(OS_ANDROID) && !defined(OS_IOS) | 135 #endif // !defined(OS_ANDROID) && !defined(OS_IOS) |
130 | 136 |
131 DISALLOW_COPY_AND_ASSIGN(ChromeContentUtilityClient); | 137 DISALLOW_COPY_AND_ASSIGN(ChromeContentUtilityClient); |
132 }; | 138 }; |
133 | 139 |
134 } // namespace chrome | 140 } // namespace chrome |
135 | 141 |
136 #endif // CHROME_UTILITY_CHROME_CONTENT_UTILITY_CLIENT_H_ | 142 #endif // CHROME_UTILITY_CHROME_CONTENT_UTILITY_CLIENT_H_ |
OLD | NEW |