| OLD | NEW |
| 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 Loading... |
| 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) | |
| OLD | NEW |