| Index: chrome/utility/importer/firefox_importer_unittest_messages_internal.h
|
| diff --git a/chrome/utility/importer/firefox_importer_unittest_messages_internal.h b/chrome/utility/importer/firefox_importer_unittest_messages_internal.h
|
| index 8882ffbf37fdf5497ebc7201b0933cdca32c5689..5d36d4a12dbb3b848cd7ce9b0acbd48f3b5d22c9 100644
|
| --- a/chrome/utility/importer/firefox_importer_unittest_messages_internal.h
|
| +++ b/chrome/utility/importer/firefox_importer_unittest_messages_internal.h
|
| @@ -2,6 +2,7 @@
|
| // Use of this source code is governed by a BSD-style license that can be
|
| // found in the LICENSE file.
|
|
|
| +#include "chrome/common/importer/profile_import_process_messages.h"
|
| #include "ipc/ipc_message_macros.h"
|
|
|
| #define IPC_MESSAGE_START FirefoxImporterUnittestMsgStart
|
| @@ -23,6 +24,12 @@ IPC_MESSAGE_CONTROL1(Msg_Decrypt,
|
| // Child->Server: Decrypted String.
|
| IPC_MESSAGE_CONTROL1(Msg_Decryptor_Response,
|
| base::string16 /* unencrypted_str */)
|
| +// Server->Child: Parse firefox signons db from a given path
|
| +IPC_MESSAGE_CONTROL1(Msg_ParseSignons,
|
| + base::FilePath /* path to firefox signons db */)
|
| +// Child->Server: Vector of parsed password forms
|
| +IPC_MESSAGE_CONTROL1(Msg_ParseSignons_Response,
|
| + std::vector<autofill::PasswordForm> /* parsed signons */)
|
|
|
| // Server->Child: Die.
|
| IPC_MESSAGE_CONTROL0(Msg_Decryptor_Quit)
|
|
|