| OLD | NEW |
| 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 // Multiply-included file, no traditional include guard. | 5 // Multiply-included file, no traditional include guard. |
| 6 #include <string> | 6 #include <string> |
| 7 #include <vector> | 7 #include <vector> |
| 8 | 8 |
| 9 #include "base/values.h" | 9 #include "base/values.h" |
| 10 #include "content/public/common/common_param_traits.h" | 10 #include "content/public/common/common_param_traits.h" |
| (...skipping 59 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 70 | 70 |
| 71 IPC_MESSAGE_ROUTED0(ShellViewHostMsg_TestFinished) | 71 IPC_MESSAGE_ROUTED0(ShellViewHostMsg_TestFinished) |
| 72 | 72 |
| 73 IPC_MESSAGE_ROUTED0(ShellViewHostMsg_ResetDone) | 73 IPC_MESSAGE_ROUTED0(ShellViewHostMsg_ResetDone) |
| 74 | 74 |
| 75 // WebTestDelegate related. | 75 // WebTestDelegate related. |
| 76 IPC_MESSAGE_ROUTED1(ShellViewHostMsg_OverridePreferences, | 76 IPC_MESSAGE_ROUTED1(ShellViewHostMsg_OverridePreferences, |
| 77 content::WebPreferences /* preferences */) | 77 content::WebPreferences /* preferences */) |
| 78 IPC_MESSAGE_ROUTED1(ShellViewHostMsg_PrintMessage, | 78 IPC_MESSAGE_ROUTED1(ShellViewHostMsg_PrintMessage, |
| 79 std::string /* message */) | 79 std::string /* message */) |
| 80 IPC_MESSAGE_ROUTED1(ShellViewHostMsg_PrintLogMessage, std::string /* message */) |
| 80 IPC_MESSAGE_ROUTED0(ShellViewHostMsg_ClearDevToolsLocalStorage) | 81 IPC_MESSAGE_ROUTED0(ShellViewHostMsg_ClearDevToolsLocalStorage) |
| 81 IPC_MESSAGE_ROUTED2(ShellViewHostMsg_ShowDevTools, | 82 IPC_MESSAGE_ROUTED2(ShellViewHostMsg_ShowDevTools, |
| 82 std::string /* settings */, | 83 std::string /* settings */, |
| 83 std::string /* frontend_url */) | 84 std::string /* frontend_url */) |
| 84 IPC_MESSAGE_ROUTED2(ShellViewHostMsg_EvaluateInDevTools, | 85 IPC_MESSAGE_ROUTED2(ShellViewHostMsg_EvaluateInDevTools, |
| 85 int /* call_id */, | 86 int /* call_id */, |
| 86 std::string /* script */) | 87 std::string /* script */) |
| 87 IPC_MESSAGE_ROUTED0(ShellViewHostMsg_CloseDevTools) | 88 IPC_MESSAGE_ROUTED0(ShellViewHostMsg_CloseDevTools) |
| 88 IPC_MESSAGE_ROUTED1(ShellViewHostMsg_GoToOffset, | 89 IPC_MESSAGE_ROUTED1(ShellViewHostMsg_GoToOffset, |
| 89 int /* offset */) | 90 int /* offset */) |
| (...skipping 13 matching lines...) Expand all Loading... |
| 103 content::LeakDetectionResult /* result */) | 104 content::LeakDetectionResult /* result */) |
| 104 | 105 |
| 105 IPC_MESSAGE_ROUTED1(ShellViewHostMsg_SetBluetoothManualChooser, | 106 IPC_MESSAGE_ROUTED1(ShellViewHostMsg_SetBluetoothManualChooser, |
| 106 bool /* enable */) | 107 bool /* enable */) |
| 107 IPC_MESSAGE_ROUTED0(ShellViewHostMsg_GetBluetoothManualChooserEvents) | 108 IPC_MESSAGE_ROUTED0(ShellViewHostMsg_GetBluetoothManualChooserEvents) |
| 108 IPC_MESSAGE_ROUTED1(ShellViewMsg_ReplyBluetoothManualChooserEvents, | 109 IPC_MESSAGE_ROUTED1(ShellViewMsg_ReplyBluetoothManualChooserEvents, |
| 109 std::vector<std::string> /* events */) | 110 std::vector<std::string> /* events */) |
| 110 IPC_MESSAGE_ROUTED2(ShellViewHostMsg_SendBluetoothManualChooserEvent, | 111 IPC_MESSAGE_ROUTED2(ShellViewHostMsg_SendBluetoothManualChooserEvent, |
| 111 std::string /* event */, | 112 std::string /* event */, |
| 112 std::string /* argument */) | 113 std::string /* argument */) |
| OLD | NEW |