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

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

Issue 1951153002: Remove AddSearchProvider (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: obsolescence date Created 4 years, 7 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
« no previous file with comments | « chrome/chrome_tests_unit.gypi ('k') | chrome/renderer/chrome_render_frame_observer.cc » ('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 <string> 7 #include <string>
8 #include <vector> 8 #include <vector>
9 9
10 #include "base/files/file_path.h" 10 #include "base/files/file_path.h"
(...skipping 429 matching lines...) Expand 10 before | Expand all | Expand 10 after
440 IPC_MESSAGE_ROUTED2(ChromeViewMsg_AppBannerAccepted, 440 IPC_MESSAGE_ROUTED2(ChromeViewMsg_AppBannerAccepted,
441 int32_t /* request_id */, 441 int32_t /* request_id */,
442 std::string /* platform */) 442 std::string /* platform */)
443 443
444 // Tells the renderer that a banner has been dismissed. 444 // Tells the renderer that a banner has been dismissed.
445 IPC_MESSAGE_ROUTED1(ChromeViewMsg_AppBannerDismissed, 445 IPC_MESSAGE_ROUTED1(ChromeViewMsg_AppBannerDismissed,
446 int32_t /* request_id */) 446 int32_t /* request_id */)
447 447
448 // Notification that the page has an OpenSearch description document 448 // Notification that the page has an OpenSearch description document
449 // associated with it. 449 // associated with it.
450 IPC_MESSAGE_ROUTED3(ChromeViewHostMsg_PageHasOSDD, 450 IPC_MESSAGE_ROUTED2(ChromeViewHostMsg_PageHasOSDD,
451 GURL /* page_url */, 451 GURL /* page_url */,
452 GURL /* osdd_url */, 452 GURL /* osdd_url */)
453 search_provider::OSDDType)
454 453
455 // Find out if the given url's security origin is installed as a search 454 // Find out if the given url's security origin is installed as a search
456 // provider. 455 // provider.
457 IPC_SYNC_MESSAGE_ROUTED2_1(ChromeViewHostMsg_GetSearchProviderInstallState, 456 IPC_SYNC_MESSAGE_ROUTED2_1(ChromeViewHostMsg_GetSearchProviderInstallState,
458 GURL /* page url */, 457 GURL /* page url */,
459 GURL /* inquiry url */, 458 GURL /* inquiry url */,
460 search_provider::InstallState /* install */) 459 search_provider::InstallState /* install */)
461 460
462 // Notifies when a plugin couldn't be loaded because it's outdated. 461 // Notifies when a plugin couldn't be loaded because it's outdated.
463 IPC_MESSAGE_ROUTED2(ChromeViewHostMsg_BlockedOutdatedPlugin, 462 IPC_MESSAGE_ROUTED2(ChromeViewHostMsg_BlockedOutdatedPlugin,
(...skipping 111 matching lines...) Expand 10 before | Expand all | Expand 10 after
575 574
576 // Record a sample string to a Rappor metric. 575 // Record a sample string to a Rappor metric.
577 IPC_MESSAGE_CONTROL2(ChromeViewHostMsg_RecordRappor, 576 IPC_MESSAGE_CONTROL2(ChromeViewHostMsg_RecordRappor,
578 std::string /* metric */, 577 std::string /* metric */,
579 std::string /* sample */) 578 std::string /* sample */)
580 579
581 // Record a domain and registry of a url to a Rappor metric. 580 // Record a domain and registry of a url to a Rappor metric.
582 IPC_MESSAGE_CONTROL2(ChromeViewHostMsg_RecordRapporURL, 581 IPC_MESSAGE_CONTROL2(ChromeViewHostMsg_RecordRapporURL,
583 std::string /* metric */, 582 std::string /* metric */,
584 GURL /* sample url */) 583 GURL /* sample url */)
OLDNEW
« no previous file with comments | « chrome/chrome_tests_unit.gypi ('k') | chrome/renderer/chrome_render_frame_observer.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698