OLD | NEW |
1 // Copyright 2013 The Chromium Authors. All rights reserved. | 1 // Copyright 2013 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 #include "chrome/browser/media_galleries/fileapi/safe_iapps_library_parser.h" | 5 #include "chrome/browser/media_galleries/fileapi/safe_iapps_library_parser.h" |
6 | 6 |
7 #include "chrome/browser/media_galleries/fileapi/media_file_system_backend.h" | 7 #include "chrome/browser/media_galleries/fileapi/media_file_system_backend.h" |
8 #include "chrome/common/chrome_utility_messages.h" | 8 #include "chrome/common/chrome_utility_messages.h" |
| 9 #include "chrome/common/extensions/chrome_utility_extensions_messages.h" |
9 #include "content/public/browser/browser_thread.h" | 10 #include "content/public/browser/browser_thread.h" |
10 #include "content/public/browser/child_process_data.h" | 11 #include "content/public/browser/child_process_data.h" |
11 #include "ipc/ipc_platform_file.h" | 12 #include "ipc/ipc_platform_file.h" |
12 | 13 |
13 using content::BrowserThread; | 14 using content::BrowserThread; |
14 using content::UtilityProcessHost; | 15 using content::UtilityProcessHost; |
15 | 16 |
16 namespace iapps { | 17 namespace iapps { |
17 | 18 |
18 SafeIAppsLibraryParser::SafeIAppsLibraryParser() | 19 SafeIAppsLibraryParser::SafeIAppsLibraryParser() |
(...skipping 143 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
162 OnGotIPhotoLibrary) | 163 OnGotIPhotoLibrary) |
163 #endif | 164 #endif |
164 IPC_MESSAGE_HANDLER(ChromeUtilityHostMsg_GotITunesLibrary, | 165 IPC_MESSAGE_HANDLER(ChromeUtilityHostMsg_GotITunesLibrary, |
165 OnGotITunesLibrary) | 166 OnGotITunesLibrary) |
166 IPC_MESSAGE_UNHANDLED(handled = false) | 167 IPC_MESSAGE_UNHANDLED(handled = false) |
167 IPC_END_MESSAGE_MAP() | 168 IPC_END_MESSAGE_MAP() |
168 return handled; | 169 return handled; |
169 } | 170 } |
170 | 171 |
171 } // namespace iapps | 172 } // namespace iapps |
OLD | NEW |