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

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

Issue 345693002: Extensions: Split extensions utility IPC messages into its own file. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: disable another test Created 6 years, 6 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 | Annotate | Revision Log
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_itunes_pref_parser_win.h" 5 #include "chrome/browser/media_galleries/fileapi/safe_itunes_pref_parser_win.h"
6 6
7 #include "chrome/common/chrome_utility_messages.h" 7 #include "chrome/common/extensions/chrome_utility_extensions_messages.h"
8 #include "content/public/browser/browser_thread.h" 8 #include "content/public/browser/browser_thread.h"
9 #include "content/public/browser/utility_process_host.h" 9 #include "content/public/browser/utility_process_host.h"
10 10
11 using content::BrowserThread; 11 using content::BrowserThread;
12 using content::UtilityProcessHost; 12 using content::UtilityProcessHost;
13 13
14 namespace itunes { 14 namespace itunes {
15 15
16 SafeITunesPrefParserWin::SafeITunesPrefParserWin( 16 SafeITunesPrefParserWin::SafeITunesPrefParserWin(
17 const std::string& unsafe_xml, 17 const std::string& unsafe_xml,
(...skipping 46 matching lines...) Expand 10 before | Expand all | Expand 10 after
64 bool handled = true; 64 bool handled = true;
65 IPC_BEGIN_MESSAGE_MAP(SafeITunesPrefParserWin, message) 65 IPC_BEGIN_MESSAGE_MAP(SafeITunesPrefParserWin, message)
66 IPC_MESSAGE_HANDLER(ChromeUtilityHostMsg_GotITunesDirectory, 66 IPC_MESSAGE_HANDLER(ChromeUtilityHostMsg_GotITunesDirectory,
67 OnGotITunesDirectory) 67 OnGotITunesDirectory)
68 IPC_MESSAGE_UNHANDLED(handled = false) 68 IPC_MESSAGE_UNHANDLED(handled = false)
69 IPC_END_MESSAGE_MAP() 69 IPC_END_MESSAGE_MAP()
70 return handled; 70 return handled;
71 } 71 }
72 72
73 } // namespace itunes 73 } // namespace itunes
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698