Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(583)

Side by Side Diff: chrome/browser/media_galleries/fileapi/safe_iapps_library_parser.cc

Issue 2884763002: Automated IWYU fix for TaskRunner includes. (Closed)
Patch Set: rebase on r472096 Created 3 years, 7 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
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 <utility> 7 #include <utility>
8 8
9 #include "base/single_thread_task_runner.h"
9 #include "build/build_config.h" 10 #include "build/build_config.h"
10 #include "chrome/browser/media_galleries/fileapi/media_file_system_backend.h" 11 #include "chrome/browser/media_galleries/fileapi/media_file_system_backend.h"
11 #include "chrome/common/chrome_utility_messages.h" 12 #include "chrome/common/chrome_utility_messages.h"
12 #include "chrome/common/extensions/chrome_utility_extensions_messages.h" 13 #include "chrome/common/extensions/chrome_utility_extensions_messages.h"
13 #include "chrome/grit/generated_resources.h" 14 #include "chrome/grit/generated_resources.h"
14 #include "content/public/browser/browser_thread.h" 15 #include "content/public/browser/browser_thread.h"
15 #include "content/public/browser/child_process_data.h" 16 #include "content/public/browser/child_process_data.h"
16 #include "ipc/ipc_platform_file.h" 17 #include "ipc/ipc_platform_file.h"
17 #include "ui/base/l10n/l10n_util.h" 18 #include "ui/base/l10n/l10n_util.h"
18 19
(...skipping 86 matching lines...) Expand 10 before | Expand all | Expand 10 after
105 bool handled = true; 106 bool handled = true;
106 IPC_BEGIN_MESSAGE_MAP(SafeIAppsLibraryParser, message) 107 IPC_BEGIN_MESSAGE_MAP(SafeIAppsLibraryParser, message)
107 IPC_MESSAGE_HANDLER(ChromeUtilityHostMsg_GotITunesLibrary, 108 IPC_MESSAGE_HANDLER(ChromeUtilityHostMsg_GotITunesLibrary,
108 OnGotITunesLibrary) 109 OnGotITunesLibrary)
109 IPC_MESSAGE_UNHANDLED(handled = false) 110 IPC_MESSAGE_UNHANDLED(handled = false)
110 IPC_END_MESSAGE_MAP() 111 IPC_END_MESSAGE_MAP()
111 return handled; 112 return handled;
112 } 113 }
113 114
114 } // namespace iapps 115 } // namespace iapps
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698