| 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_itunes_pref_parser_win.h" | 5 #include "chrome/browser/media_galleries/fileapi/safe_itunes_pref_parser_win.h" |
| 6 | 6 |
| 7 #include "base/single_thread_task_runner.h" | 7 #include "base/single_thread_task_runner.h" |
| 8 #include "base/thread_task_runner_handle.h" | 8 #include "base/threading/thread_task_runner_handle.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" |
| 11 #include "content/public/browser/browser_thread.h" | 11 #include "content/public/browser/browser_thread.h" |
| 12 #include "content/public/browser/utility_process_host.h" | 12 #include "content/public/browser/utility_process_host.h" |
| 13 #include "ui/base/l10n/l10n_util.h" | 13 #include "ui/base/l10n/l10n_util.h" |
| 14 | 14 |
| 15 using content::BrowserThread; | 15 using content::BrowserThread; |
| 16 using content::UtilityProcessHost; | 16 using content::UtilityProcessHost; |
| 17 | 17 |
| 18 namespace itunes { | 18 namespace itunes { |
| (...skipping 51 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 70 bool handled = true; | 70 bool handled = true; |
| 71 IPC_BEGIN_MESSAGE_MAP(SafeITunesPrefParserWin, message) | 71 IPC_BEGIN_MESSAGE_MAP(SafeITunesPrefParserWin, message) |
| 72 IPC_MESSAGE_HANDLER(ChromeUtilityHostMsg_GotITunesDirectory, | 72 IPC_MESSAGE_HANDLER(ChromeUtilityHostMsg_GotITunesDirectory, |
| 73 OnGotITunesDirectory) | 73 OnGotITunesDirectory) |
| 74 IPC_MESSAGE_UNHANDLED(handled = false) | 74 IPC_MESSAGE_UNHANDLED(handled = false) |
| 75 IPC_END_MESSAGE_MAP() | 75 IPC_END_MESSAGE_MAP() |
| 76 return handled; | 76 return handled; |
| 77 } | 77 } |
| 78 | 78 |
| 79 } // namespace itunes | 79 } // namespace itunes |
| OLD | NEW |