| 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 605 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 616 IPC_MESSAGE_CONTROL1(ChromeViewHostMsg_ResourceTypeStats, | 616 IPC_MESSAGE_CONTROL1(ChromeViewHostMsg_ResourceTypeStats, |
| 617 WebKit::WebCache::ResourceTypeStats) | 617 WebKit::WebCache::ResourceTypeStats) |
| 618 | 618 |
| 619 // Notifies the browser that a page has been translated. | 619 // Notifies the browser that a page has been translated. |
| 620 IPC_MESSAGE_ROUTED4(ChromeViewHostMsg_PageTranslated, | 620 IPC_MESSAGE_ROUTED4(ChromeViewHostMsg_PageTranslated, |
| 621 int, /* page id */ | 621 int, /* page id */ |
| 622 std::string /* the original language */, | 622 std::string /* the original language */, |
| 623 std::string /* the translated language */, | 623 std::string /* the translated language */, |
| 624 TranslateErrors::Type /* the error type if available */) | 624 TranslateErrors::Type /* the error type if available */) |
| 625 | 625 |
| 626 // Message sent from the renderer to the browser to notify it of events which | |
| 627 // may lead to the cancellation of a prerender. The message is sent only when | |
| 628 // the renderer is prerendering. | |
| 629 IPC_MESSAGE_ROUTED0(ChromeViewHostMsg_MaybeCancelPrerenderForHTML5Media) | |
| 630 | |
| 631 // Message sent from the renderer to the browser to notify it of a | 626 // Message sent from the renderer to the browser to notify it of a |
| 632 // window.print() call which should cancel the prerender. The message is sent | 627 // window.print() call which should cancel the prerender. The message is sent |
| 633 // only when the renderer is prerendering. | 628 // only when the renderer is prerendering. |
| 634 IPC_MESSAGE_ROUTED0(ChromeViewHostMsg_CancelPrerenderForPrinting) | 629 IPC_MESSAGE_ROUTED0(ChromeViewHostMsg_CancelPrerenderForPrinting) |
| 635 | 630 |
| 636 // Sent by the renderer to check if a URL has permission to trigger a clipboard | 631 // Sent by the renderer to check if a URL has permission to trigger a clipboard |
| 637 // read/write operation from the DOM. | 632 // read/write operation from the DOM. |
| 638 IPC_SYNC_MESSAGE_ROUTED1_1(ChromeViewHostMsg_CanTriggerClipboardRead, | 633 IPC_SYNC_MESSAGE_ROUTED1_1(ChromeViewHostMsg_CanTriggerClipboardRead, |
| 639 GURL /* origin */, | 634 GURL /* origin */, |
| 640 bool /* allowed */) | 635 bool /* allowed */) |
| (...skipping 119 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 760 int /* page_id */, | 755 int /* page_id */, |
| 761 bool /* supported */) | 756 bool /* supported */) |
| 762 | 757 |
| 763 // Tells listeners that a detailed message was reported to the console by | 758 // Tells listeners that a detailed message was reported to the console by |
| 764 // WebKit. | 759 // WebKit. |
| 765 IPC_MESSAGE_ROUTED4(ChromeViewHostMsg_DetailedConsoleMessageAdded, | 760 IPC_MESSAGE_ROUTED4(ChromeViewHostMsg_DetailedConsoleMessageAdded, |
| 766 string16 /* message */, | 761 string16 /* message */, |
| 767 string16 /* source */, | 762 string16 /* source */, |
| 768 extensions::StackTrace /* stack trace */, | 763 extensions::StackTrace /* stack trace */, |
| 769 int32 /* severity level */) | 764 int32 /* severity level */) |
| OLD | NEW |