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

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

Issue 899883004: Added chrome-side support for link rel=preconnect (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Addressed formatting nit Created 5 years, 10 months 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
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 527 matching lines...) Expand 10 before | Expand all | Expand 10 after
538 IPC_SYNC_MESSAGE_ROUTED2_1(ChromeViewHostMsg_GetSearchProviderInstallState, 538 IPC_SYNC_MESSAGE_ROUTED2_1(ChromeViewHostMsg_GetSearchProviderInstallState,
539 GURL /* page url */, 539 GURL /* page url */,
540 GURL /* inquiry url */, 540 GURL /* inquiry url */,
541 search_provider::InstallState /* install */) 541 search_provider::InstallState /* install */)
542 542
543 // Sends back stats about the V8 heap. 543 // Sends back stats about the V8 heap.
544 IPC_MESSAGE_CONTROL2(ChromeViewHostMsg_V8HeapStats, 544 IPC_MESSAGE_CONTROL2(ChromeViewHostMsg_V8HeapStats,
545 int /* size of heap (allocated from the OS) */, 545 int /* size of heap (allocated from the OS) */,
546 int /* bytes in use */) 546 int /* bytes in use */)
547 547
548 // Request for preconnect to host providing resource specified by URL
549 IPC_MESSAGE_CONTROL1(ChromeViewHostMsg_Preconnect,
550 GURL /* preconnect target url */)
551
552 // Notifies when a plugin couldn't be loaded because it's outdated. 548 // Notifies when a plugin couldn't be loaded because it's outdated.
553 IPC_MESSAGE_ROUTED2(ChromeViewHostMsg_BlockedOutdatedPlugin, 549 IPC_MESSAGE_ROUTED2(ChromeViewHostMsg_BlockedOutdatedPlugin,
554 int /* placeholder ID */, 550 int /* placeholder ID */,
555 std::string /* plug-in group identifier */) 551 std::string /* plug-in group identifier */)
556 552
557 // Notifies when a plugin couldn't be loaded because it requires 553 // Notifies when a plugin couldn't be loaded because it requires
558 // user authorization. 554 // user authorization.
559 IPC_MESSAGE_ROUTED2(ChromeViewHostMsg_BlockedUnauthorizedPlugin, 555 IPC_MESSAGE_ROUTED2(ChromeViewHostMsg_BlockedUnauthorizedPlugin,
560 base::string16 /* name */, 556 base::string16 /* name */,
561 std::string /* plug-in group identifier */) 557 std::string /* plug-in group identifier */)
(...skipping 104 matching lines...) Expand 10 before | Expand all | Expand 10 after
666 662
667 #if defined(ENABLE_PLUGINS) 663 #if defined(ENABLE_PLUGINS)
668 // Sent by the renderer to check if crash reporting is enabled. 664 // Sent by the renderer to check if crash reporting is enabled.
669 IPC_SYNC_MESSAGE_CONTROL0_1(ChromeViewHostMsg_IsCrashReportingEnabled, 665 IPC_SYNC_MESSAGE_CONTROL0_1(ChromeViewHostMsg_IsCrashReportingEnabled,
670 bool /* enabled */) 666 bool /* enabled */)
671 #endif 667 #endif
672 668
673 // Sent by the renderer to indicate that a fields trial has been activated. 669 // Sent by the renderer to indicate that a fields trial has been activated.
674 IPC_MESSAGE_CONTROL1(ChromeViewHostMsg_FieldTrialActivated, 670 IPC_MESSAGE_CONTROL1(ChromeViewHostMsg_FieldTrialActivated,
675 std::string /* name */) 671 std::string /* name */)
OLDNEW
« no previous file with comments | « chrome/browser/renderer_host/chrome_render_message_filter.cc ('k') | components/network_hints.gypi » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698