| 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 <map> | 6 #include <map> |
| 7 #include <set> | 7 #include <set> |
| 8 #include <string> | 8 #include <string> |
| 9 #include <vector> | 9 #include <vector> |
| 10 | 10 |
| (...skipping 392 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 403 std::string /* host */) | 403 std::string /* host */) |
| 404 | 404 |
| 405 // Sent when the profile changes the kSafeBrowsingEnabled preference. | 405 // Sent when the profile changes the kSafeBrowsingEnabled preference. |
| 406 IPC_MESSAGE_ROUTED1(ChromeViewMsg_SetClientSidePhishingDetection, | 406 IPC_MESSAGE_ROUTED1(ChromeViewMsg_SetClientSidePhishingDetection, |
| 407 bool /* enable_phishing_detection */) | 407 bool /* enable_phishing_detection */) |
| 408 | 408 |
| 409 // This message asks frame sniffer start. | 409 // This message asks frame sniffer start. |
| 410 IPC_MESSAGE_ROUTED1(ChromeViewMsg_StartFrameSniffer, | 410 IPC_MESSAGE_ROUTED1(ChromeViewMsg_StartFrameSniffer, |
| 411 string16 /* frame-name */) | 411 string16 /* frame-name */) |
| 412 | 412 |
| 413 // Tells the renderer the Omnibox focus has changed. |
| 414 IPC_MESSAGE_ROUTED1(ChromeViewMsg_SearchBoxFocusChanged, bool /* is_focused */) |
| 415 |
| 413 // JavaScript related messages ----------------------------------------------- | 416 // JavaScript related messages ----------------------------------------------- |
| 414 | 417 |
| 415 // Notify the JavaScript engine in the render to change its parameters | 418 // Notify the JavaScript engine in the render to change its parameters |
| 416 // while performing stress testing. | 419 // while performing stress testing. |
| 417 IPC_MESSAGE_ROUTED2(ChromeViewMsg_JavaScriptStressTestControl, | 420 IPC_MESSAGE_ROUTED2(ChromeViewMsg_JavaScriptStressTestControl, |
| 418 int /* cmd */, | 421 int /* cmd */, |
| 419 int /* param */) | 422 int /* param */) |
| 420 | 423 |
| 421 // Asks the renderer to send back FPS. | 424 // Asks the renderer to send back FPS. |
| 422 IPC_MESSAGE_ROUTED0(ChromeViewMsg_GetFPS) | 425 IPC_MESSAGE_ROUTED0(ChromeViewMsg_GetFPS) |
| (...skipping 316 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 739 // previous SetCookie message to be processed. | 742 // previous SetCookie message to be processed. |
| 740 IPC_SYNC_MESSAGE_ROUTED2_1(ChromeViewHostMsg_GetCookies, | 743 IPC_SYNC_MESSAGE_ROUTED2_1(ChromeViewHostMsg_GetCookies, |
| 741 GURL /* url */, | 744 GURL /* url */, |
| 742 GURL /* first_party_for_cookies */, | 745 GURL /* first_party_for_cookies */, |
| 743 std::string /* cookies */) | 746 std::string /* cookies */) |
| 744 | 747 |
| 745 // Provide the browser process with current renderer framerate. | 748 // Provide the browser process with current renderer framerate. |
| 746 IPC_MESSAGE_CONTROL2(ChromeViewHostMsg_FPS, | 749 IPC_MESSAGE_CONTROL2(ChromeViewHostMsg_FPS, |
| 747 int /* routing id */, | 750 int /* routing id */, |
| 748 float /* frames per second */) | 751 float /* frames per second */) |
| OLD | NEW |