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_vector.h" | 9 #include "base/memory/scoped_vector.h" |
10 #include "base/platform_file.h" | 10 #include "base/platform_file.h" |
(...skipping 90 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
101 const IPC::PlatformFileForTransit& itunes_library_file); | 101 const IPC::PlatformFileForTransit& itunes_library_file); |
102 | 102 |
103 void OnParsePicasaPMPDatabase( | 103 void OnParsePicasaPMPDatabase( |
104 const picasa::AlbumTableFilesForTransit& album_table_files); | 104 const picasa::AlbumTableFilesForTransit& album_table_files); |
105 | 105 |
106 void OnIndexPicasaAlbumsContents( | 106 void OnIndexPicasaAlbumsContents( |
107 const picasa::AlbumUIDSet& album_uids, | 107 const picasa::AlbumUIDSet& album_uids, |
108 const std::vector<picasa::FolderINIContents>& folders_inis); | 108 const std::vector<picasa::FolderINIContents>& folders_inis); |
109 #endif // defined(OS_WIN) || defined(OS_MACOSX) | 109 #endif // defined(OS_WIN) || defined(OS_MACOSX) |
110 | 110 |
| 111 void OnWriteImage(const base::FilePath& source, |
| 112 const base::FilePath& target); |
| 113 |
111 typedef ScopedVector<UtilityMessageHandler> Handlers; | 114 typedef ScopedVector<UtilityMessageHandler> Handlers; |
112 Handlers handlers_; | 115 Handlers handlers_; |
113 | 116 |
114 DISALLOW_COPY_AND_ASSIGN(ChromeContentUtilityClient); | 117 DISALLOW_COPY_AND_ASSIGN(ChromeContentUtilityClient); |
115 }; | 118 }; |
116 | 119 |
117 } // namespace chrome | 120 } // namespace chrome |
118 | 121 |
119 #endif // CHROME_UTILITY_CHROME_CONTENT_UTILITY_CLIENT_H_ | 122 #endif // CHROME_UTILITY_CHROME_CONTENT_UTILITY_CLIENT_H_ |
OLD | NEW |