| 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 "chrome/common/extensions/chrome_utility_extensions_messages.h" |
| 10 #include "chrome/grit/generated_resources.h" | 10 #include "chrome/grit/generated_resources.h" |
| (...skipping 46 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 57 BrowserThread::IO, FROM_HERE, | 57 BrowserThread::IO, FROM_HERE, |
| 58 base::Bind(&SafeIAppsLibraryParser::StartProcessOnIOThread, this)); | 58 base::Bind(&SafeIAppsLibraryParser::StartProcessOnIOThread, this)); |
| 59 } | 59 } |
| 60 | 60 |
| 61 SafeIAppsLibraryParser::~SafeIAppsLibraryParser() {} | 61 SafeIAppsLibraryParser::~SafeIAppsLibraryParser() {} |
| 62 | 62 |
| 63 void SafeIAppsLibraryParser::StartProcessOnIOThread() { | 63 void SafeIAppsLibraryParser::StartProcessOnIOThread() { |
| 64 DCHECK_CURRENTLY_ON(BrowserThread::IO); | 64 DCHECK_CURRENTLY_ON(BrowserThread::IO); |
| 65 DCHECK_EQ(INITIAL_STATE, parser_state_); | 65 DCHECK_EQ(INITIAL_STATE, parser_state_); |
| 66 | 66 |
| 67 scoped_refptr<base::MessageLoopProxy> message_loop_proxy = | 67 scoped_refptr<base::SingleThreadTaskRunner> task_runner = |
| 68 BrowserThread::GetMessageLoopProxyForThread(BrowserThread::IO); | 68 BrowserThread::GetMessageLoopProxyForThread(BrowserThread::IO); |
| 69 utility_process_host_ = | 69 utility_process_host_ = |
| 70 UtilityProcessHost::Create(this, message_loop_proxy.get())->AsWeakPtr(); | 70 UtilityProcessHost::Create(this, task_runner.get())->AsWeakPtr(); |
| 71 utility_process_host_->SetName(l10n_util::GetStringUTF16( | 71 utility_process_host_->SetName(l10n_util::GetStringUTF16( |
| 72 IDS_UTILITY_PROCESS_MEDIA_LIBRARY_FILE_CHECKER_NAME)); | 72 IDS_UTILITY_PROCESS_MEDIA_LIBRARY_FILE_CHECKER_NAME)); |
| 73 // Wait for the startup notification before sending the main IPC to the | 73 // Wait for the startup notification before sending the main IPC to the |
| 74 // utility process, so that we can dup the file handle. | 74 // utility process, so that we can dup the file handle. |
| 75 utility_process_host_->Send(new ChromeUtilityMsg_StartupPing); | 75 utility_process_host_->Send(new ChromeUtilityMsg_StartupPing); |
| 76 parser_state_ = PINGED_UTILITY_PROCESS_STATE; | 76 parser_state_ = PINGED_UTILITY_PROCESS_STATE; |
| 77 } | 77 } |
| 78 | 78 |
| 79 void SafeIAppsLibraryParser::OnUtilityProcessStarted() { | 79 void SafeIAppsLibraryParser::OnUtilityProcessStarted() { |
| 80 DCHECK_CURRENTLY_ON(BrowserThread::IO); | 80 DCHECK_CURRENTLY_ON(BrowserThread::IO); |
| (...skipping 86 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 167 OnGotIPhotoLibrary) | 167 OnGotIPhotoLibrary) |
| 168 #endif | 168 #endif |
| 169 IPC_MESSAGE_HANDLER(ChromeUtilityHostMsg_GotITunesLibrary, | 169 IPC_MESSAGE_HANDLER(ChromeUtilityHostMsg_GotITunesLibrary, |
| 170 OnGotITunesLibrary) | 170 OnGotITunesLibrary) |
| 171 IPC_MESSAGE_UNHANDLED(handled = false) | 171 IPC_MESSAGE_UNHANDLED(handled = false) |
| 172 IPC_END_MESSAGE_MAP() | 172 IPC_END_MESSAGE_MAP() |
| 173 return handled; | 173 return handled; |
| 174 } | 174 } |
| 175 | 175 |
| 176 } // namespace iapps | 176 } // namespace iapps |
| OLD | NEW |