| 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 438 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 449 // Notification that the language for the tab has been determined. | 449 // Notification that the language for the tab has been determined. |
| 450 IPC_MESSAGE_ROUTED2(ChromeViewHostMsg_TranslateLanguageDetermined, | 450 IPC_MESSAGE_ROUTED2(ChromeViewHostMsg_TranslateLanguageDetermined, |
| 451 LanguageDetectionDetails /* details about lang detection */, | 451 LanguageDetectionDetails /* details about lang detection */, |
| 452 bool /* whether the page needs translation */) | 452 bool /* whether the page needs translation */) |
| 453 | 453 |
| 454 IPC_MESSAGE_CONTROL1(ChromeViewHostMsg_UpdatedCacheStats, | 454 IPC_MESSAGE_CONTROL1(ChromeViewHostMsg_UpdatedCacheStats, |
| 455 blink::WebCache::UsageStats /* stats */) | 455 blink::WebCache::UsageStats /* stats */) |
| 456 | 456 |
| 457 // Tells the browser that content in the current page was blocked due to the | 457 // Tells the browser that content in the current page was blocked due to the |
| 458 // user's content settings. | 458 // user's content settings. |
| 459 IPC_MESSAGE_ROUTED2(ChromeViewHostMsg_ContentBlocked, | 459 IPC_MESSAGE_ROUTED1(ChromeViewHostMsg_ContentBlocked, |
| 460 ContentSettingsType, /* type of blocked content */ | 460 ContentSettingsType /* type of blocked content */) |
| 461 std::string /* resource identifier */) | |
| 462 | 461 |
| 463 // Sent by the renderer process to check whether access to web databases is | 462 // Sent by the renderer process to check whether access to web databases is |
| 464 // granted by content settings. | 463 // granted by content settings. |
| 465 IPC_SYNC_MESSAGE_CONTROL5_1(ChromeViewHostMsg_AllowDatabase, | 464 IPC_SYNC_MESSAGE_CONTROL5_1(ChromeViewHostMsg_AllowDatabase, |
| 466 int /* render_view_id */, | 465 int /* render_view_id */, |
| 467 GURL /* origin_url */, | 466 GURL /* origin_url */, |
| 468 GURL /* top origin url */, | 467 GURL /* top origin url */, |
| 469 base::string16 /* database name */, | 468 base::string16 /* database name */, |
| 470 base::string16 /* database display name */, | 469 base::string16 /* database display name */, |
| 471 bool /* allowed */) | 470 bool /* allowed */) |
| (...skipping 303 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 775 std::vector<GURL> /* search_urls */, | 774 std::vector<GURL> /* search_urls */, |
| 776 GURL /* new_tab_page_url */) | 775 GURL /* new_tab_page_url */) |
| 777 | 776 |
| 778 // Tells listeners that a detailed message was reported to the console by | 777 // Tells listeners that a detailed message was reported to the console by |
| 779 // WebKit. | 778 // WebKit. |
| 780 IPC_MESSAGE_ROUTED4(ChromeViewHostMsg_DetailedConsoleMessageAdded, | 779 IPC_MESSAGE_ROUTED4(ChromeViewHostMsg_DetailedConsoleMessageAdded, |
| 781 base::string16 /* message */, | 780 base::string16 /* message */, |
| 782 base::string16 /* source */, | 781 base::string16 /* source */, |
| 783 extensions::StackTrace /* stack trace */, | 782 extensions::StackTrace /* stack trace */, |
| 784 int32 /* severity level */) | 783 int32 /* severity level */) |
| OLD | NEW |