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

Side by Side Diff: chrome/browser/media_galleries/fileapi/safe_picasa_album_table_reader.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, 5 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_picasa_album_table_reader. h" 5 #include "chrome/browser/media_galleries/fileapi/safe_picasa_album_table_reader. h"
6 6
7 #include "base/bind.h" 7 #include "base/bind.h"
8 #include "base/logging.h" 8 #include "base/logging.h"
9 #include "chrome/browser/media_galleries/fileapi/media_file_system_backend.h" 9 #include "chrome/browser/media_galleries/fileapi/media_file_system_backend.h"
10 #include "chrome/common/chrome_utility_messages.h" 10 #include "chrome/common/chrome_utility_messages.h"
11 #include "chrome/common/extensions/chrome_utility_extensions_messages.h"
11 #include "content/public/browser/browser_thread.h" 12 #include "content/public/browser/browser_thread.h"
12 #include "content/public/browser/child_process_data.h" 13 #include "content/public/browser/child_process_data.h"
13 14
14 using content::BrowserThread; 15 using content::BrowserThread;
15 16
16 namespace picasa { 17 namespace picasa {
17 18
18 SafePicasaAlbumTableReader::SafePicasaAlbumTableReader( 19 SafePicasaAlbumTableReader::SafePicasaAlbumTableReader(
19 AlbumTableFiles album_table_files) 20 AlbumTableFiles album_table_files)
20 : album_table_files_(album_table_files.Pass()), 21 : album_table_files_(album_table_files.Pass()),
(...skipping 111 matching lines...) Expand 10 before | Expand all | Expand 10 after
132 IPC_MESSAGE_HANDLER(ChromeUtilityHostMsg_ProcessStarted, 133 IPC_MESSAGE_HANDLER(ChromeUtilityHostMsg_ProcessStarted,
133 OnProcessStarted) 134 OnProcessStarted)
134 IPC_MESSAGE_HANDLER(ChromeUtilityHostMsg_ParsePicasaPMPDatabase_Finished, 135 IPC_MESSAGE_HANDLER(ChromeUtilityHostMsg_ParsePicasaPMPDatabase_Finished,
135 OnParsePicasaPMPDatabaseFinished) 136 OnParsePicasaPMPDatabaseFinished)
136 IPC_MESSAGE_UNHANDLED(handled = false) 137 IPC_MESSAGE_UNHANDLED(handled = false)
137 IPC_END_MESSAGE_MAP() 138 IPC_END_MESSAGE_MAP()
138 return handled; 139 return handled;
139 } 140 }
140 141
141 } // namespace picasa 142 } // namespace picasa
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698