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

Side by Side Diff: chrome/utility/chrome_content_utility_client.h

Issue 61643015: Adds imageWriterPrivate support for Windows (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Reorganization and test updates. Created 7 years, 1 month 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 (c) 2012 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2012 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 #ifndef CHROME_UTILITY_CHROME_CONTENT_UTILITY_CLIENT_H_ 5 #ifndef CHROME_UTILITY_CHROME_CONTENT_UTILITY_CLIENT_H_
6 #define CHROME_UTILITY_CHROME_CONTENT_UTILITY_CLIENT_H_ 6 #define CHROME_UTILITY_CHROME_CONTENT_UTILITY_CLIENT_H_
7 7
8 #include "base/compiler_specific.h" 8 #include "base/compiler_specific.h"
9 #include "base/memory/scoped_vector.h" 9 #include "base/memory/scoped_vector.h"
10 #include "base/platform_file.h" 10 #include "base/platform_file.h"
(...skipping 90 matching lines...) Expand 10 before | Expand all | Expand 10 after
101 const IPC::PlatformFileForTransit& itunes_library_file); 101 const IPC::PlatformFileForTransit& itunes_library_file);
102 102
103 void OnParsePicasaPMPDatabase( 103 void OnParsePicasaPMPDatabase(
104 const picasa::AlbumTableFilesForTransit& album_table_files); 104 const picasa::AlbumTableFilesForTransit& album_table_files);
105 105
106 void OnIndexPicasaAlbumsContents( 106 void OnIndexPicasaAlbumsContents(
107 const picasa::AlbumUIDSet& album_uids, 107 const picasa::AlbumUIDSet& album_uids,
108 const std::vector<picasa::FolderINIContents>& folders_inis); 108 const std::vector<picasa::FolderINIContents>& folders_inis);
109 #endif // defined(OS_WIN) || defined(OS_MACOSX) 109 #endif // defined(OS_WIN) || defined(OS_MACOSX)
110 110
111 void OnWriteImage(const base::FilePath& source,
112 const base::FilePath& target);
113
111 typedef ScopedVector<UtilityMessageHandler> Handlers; 114 typedef ScopedVector<UtilityMessageHandler> Handlers;
112 Handlers handlers_; 115 Handlers handlers_;
113 116
114 DISALLOW_COPY_AND_ASSIGN(ChromeContentUtilityClient); 117 DISALLOW_COPY_AND_ASSIGN(ChromeContentUtilityClient);
115 }; 118 };
116 119
117 } // namespace chrome 120 } // namespace chrome
118 121
119 #endif // CHROME_UTILITY_CHROME_CONTENT_UTILITY_CLIENT_H_ 122 #endif // CHROME_UTILITY_CHROME_CONTENT_UTILITY_CLIENT_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698