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

Side by Side Diff: chrome/common/extensions/chrome_utility_extensions_messages.h

Issue 2610953003: Convert utility process WiFi Credentials IPC to mojo (Closed)
Patch Set: Add mojom test network name. Created 3 years, 11 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 2014 The Chromium Authors. All rights reserved. 1 // Copyright 2014 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 // Multiply-included message file, so no include guard. 5 // Multiply-included message file, so no include guard.
6 6
7 #include <stdint.h> 7 #include <stdint.h>
8 8
9 #include <string> 9 #include <string>
10 #include <vector> 10 #include <vector>
(...skipping 150 matching lines...) Expand 10 before | Expand all | Expand 10 after
161 // Reply when a write or verify operation has been fully cancelled. 161 // Reply when a write or verify operation has been fully cancelled.
162 IPC_MESSAGE_CONTROL0(ChromeUtilityHostMsg_ImageWriter_Cancelled) 162 IPC_MESSAGE_CONTROL0(ChromeUtilityHostMsg_ImageWriter_Cancelled)
163 163
164 // Reply when a write or verify operation fails to complete. 164 // Reply when a write or verify operation fails to complete.
165 IPC_MESSAGE_CONTROL1(ChromeUtilityHostMsg_ImageWriter_Failed, 165 IPC_MESSAGE_CONTROL1(ChromeUtilityHostMsg_ImageWriter_Failed,
166 std::string /* message */) 166 std::string /* message */)
167 167
168 // Periodic status update about the progress of an operation. 168 // Periodic status update about the progress of an operation.
169 IPC_MESSAGE_CONTROL1(ChromeUtilityHostMsg_ImageWriter_Progress, 169 IPC_MESSAGE_CONTROL1(ChromeUtilityHostMsg_ImageWriter_Progress,
170 int64_t /* number of bytes processed */) 170 int64_t /* number of bytes processed */)
171
172 #if defined(OS_WIN)
173 // Get plain-text WiFi credentials from the system (requires UAC privilege
174 // elevation).
175 IPC_MESSAGE_CONTROL1(ChromeUtilityHostMsg_GetWiFiCredentials,
176 std::string /* ssid */)
177
178 // Reply after getting WiFi credentials from the system. |success| is false if
179 // error occurred.
180 IPC_MESSAGE_CONTROL2(ChromeUtilityHostMsg_GotWiFiCredentials,
181 std::string /* key_data */,
182 bool /* success */)
183 #endif // defined(OS_WIN)
OLDNEW
« no previous file with comments | « chrome/common/extensions/BUILD.gn ('k') | chrome/common/extensions/wifi_credentials_getter.mojom » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698