Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(150)

Side by Side Diff: chrome/common/render_messages.h

Issue 644123002: Componentize renderer side of DNS prefetching. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: trybot fixes: 1) hide gyp target from ios 2) UintToString --> SizeTToString Created 6 years, 1 month ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« no previous file with comments | « chrome/common/net/predictor_common.h ('k') | chrome/renderer/BUILD.gn » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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 <stdint.h> 6 #include <stdint.h>
7 #include <map> 7 #include <map>
8 #include <set> 8 #include <set>
9 #include <string> 9 #include <string>
10 #include <vector> 10 #include <vector>
(...skipping 511 matching lines...) Expand 10 before | Expand all | Expand 10 after
522 IPC_SYNC_MESSAGE_ROUTED2_1(ChromeViewHostMsg_GetSearchProviderInstallState, 522 IPC_SYNC_MESSAGE_ROUTED2_1(ChromeViewHostMsg_GetSearchProviderInstallState,
523 GURL /* page url */, 523 GURL /* page url */,
524 GURL /* inquiry url */, 524 GURL /* inquiry url */,
525 search_provider::InstallState /* install */) 525 search_provider::InstallState /* install */)
526 526
527 // Sends back stats about the V8 heap. 527 // Sends back stats about the V8 heap.
528 IPC_MESSAGE_CONTROL2(ChromeViewHostMsg_V8HeapStats, 528 IPC_MESSAGE_CONTROL2(ChromeViewHostMsg_V8HeapStats,
529 int /* size of heap (allocated from the OS) */, 529 int /* size of heap (allocated from the OS) */,
530 int /* bytes in use */) 530 int /* bytes in use */)
531 531
532 // Request for a DNS prefetch of the names in the array.
533 // NameList is typedef'ed std::vector<std::string>
534 IPC_MESSAGE_CONTROL1(ChromeViewHostMsg_DnsPrefetch,
535 std::vector<std::string> /* hostnames */)
536
537 // Request for preconnect to host providing resource specified by URL 532 // Request for preconnect to host providing resource specified by URL
538 IPC_MESSAGE_CONTROL1(ChromeViewHostMsg_Preconnect, 533 IPC_MESSAGE_CONTROL1(ChromeViewHostMsg_Preconnect,
539 GURL /* preconnect target url */) 534 GURL /* preconnect target url */)
540 535
541 // Notifies when a plugin couldn't be loaded because it's outdated. 536 // Notifies when a plugin couldn't be loaded because it's outdated.
542 IPC_MESSAGE_ROUTED2(ChromeViewHostMsg_BlockedOutdatedPlugin, 537 IPC_MESSAGE_ROUTED2(ChromeViewHostMsg_BlockedOutdatedPlugin,
543 int /* placeholder ID */, 538 int /* placeholder ID */,
544 std::string /* plug-in group identifier */) 539 std::string /* plug-in group identifier */)
545 540
546 // Notifies when a plugin couldn't be loaded because it requires 541 // Notifies when a plugin couldn't be loaded because it requires
(...skipping 104 matching lines...) Expand 10 before | Expand all | Expand 10 after
651 // process so that they can be assigned to an Instant renderer. 646 // process so that they can be assigned to an Instant renderer.
652 IPC_MESSAGE_CONTROL2(ChromeViewMsg_SetSearchURLs, 647 IPC_MESSAGE_CONTROL2(ChromeViewMsg_SetSearchURLs,
653 std::vector<GURL> /* search_urls */, 648 std::vector<GURL> /* search_urls */,
654 GURL /* new_tab_page_url */) 649 GURL /* new_tab_page_url */)
655 650
656 #if defined(ENABLE_PLUGINS) 651 #if defined(ENABLE_PLUGINS)
657 // Sent by the renderer to check if crash reporting is enabled. 652 // Sent by the renderer to check if crash reporting is enabled.
658 IPC_SYNC_MESSAGE_CONTROL0_1(ChromeViewHostMsg_IsCrashReportingEnabled, 653 IPC_SYNC_MESSAGE_CONTROL0_1(ChromeViewHostMsg_IsCrashReportingEnabled,
659 bool /* enabled */) 654 bool /* enabled */)
660 #endif 655 #endif
OLDNEW
« no previous file with comments | « chrome/common/net/predictor_common.h ('k') | chrome/renderer/BUILD.gn » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698