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

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

Issue 1428423002: Remove setVoiceSearchSupported part of EmbeddedSearch SearchBox API. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: mac fix Created 5 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/chrome_browser_ui.gypi ('k') | chrome/renderer/resources/extensions/searchbox_api.js » ('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 231 matching lines...) Expand 10 before | Expand all | Expand 10 after
242 IPC_MESSAGE_ROUTED1(ChromeViewMsg_SearchBoxThemeChanged, 242 IPC_MESSAGE_ROUTED1(ChromeViewMsg_SearchBoxThemeChanged,
243 ThemeBackgroundInfo /* value */) 243 ThemeBackgroundInfo /* value */)
244 244
245 IPC_MESSAGE_ROUTED1(ChromeViewMsg_HistorySyncCheckResult, 245 IPC_MESSAGE_ROUTED1(ChromeViewMsg_HistorySyncCheckResult,
246 bool /* sync_history */) 246 bool /* sync_history */)
247 247
248 IPC_MESSAGE_ROUTED2(ChromeViewMsg_ChromeIdentityCheckResult, 248 IPC_MESSAGE_ROUTED2(ChromeViewMsg_ChromeIdentityCheckResult,
249 base::string16 /* identity */, 249 base::string16 /* identity */,
250 bool /* identity_match */) 250 bool /* identity_match */)
251 251
252 IPC_MESSAGE_ROUTED0(ChromeViewMsg_SearchBoxToggleVoiceSearch)
253
254 // Sent on process startup to indicate whether this process is running in 252 // Sent on process startup to indicate whether this process is running in
255 // incognito mode. 253 // incognito mode.
256 IPC_MESSAGE_CONTROL1(ChromeViewMsg_SetIsIncognitoProcess, 254 IPC_MESSAGE_CONTROL1(ChromeViewMsg_SetIsIncognitoProcess,
257 bool /* is_incognito_processs */) 255 bool /* is_incognito_processs */)
258 256
259 // Sent when the profile changes the kSafeBrowsingEnabled preference. 257 // Sent when the profile changes the kSafeBrowsingEnabled preference.
260 IPC_MESSAGE_ROUTED1(ChromeViewMsg_SetClientSidePhishingDetection, 258 IPC_MESSAGE_ROUTED1(ChromeViewMsg_SetClientSidePhishingDetection,
261 bool /* enable_phishing_detection */) 259 bool /* enable_phishing_detection */)
262 260
263 // Reloads the image selected by the most recently opened context menu 261 // Reloads the image selected by the most recently opened context menu
(...skipping 268 matching lines...) Expand 10 before | Expand all | Expand 10 after
532 530
533 // Tells InstantExtended to undo all most visited item deletions. 531 // Tells InstantExtended to undo all most visited item deletions.
534 IPC_MESSAGE_ROUTED1(ChromeViewHostMsg_SearchBoxUndoAllMostVisitedDeletions, 532 IPC_MESSAGE_ROUTED1(ChromeViewHostMsg_SearchBoxUndoAllMostVisitedDeletions,
535 int /* page_seq_no */) 533 int /* page_seq_no */)
536 534
537 // Tells InstantExtended to undo one most visited item deletion. 535 // Tells InstantExtended to undo one most visited item deletion.
538 IPC_MESSAGE_ROUTED2(ChromeViewHostMsg_SearchBoxUndoMostVisitedDeletion, 536 IPC_MESSAGE_ROUTED2(ChromeViewHostMsg_SearchBoxUndoMostVisitedDeletion,
539 int /* page_seq_no */, 537 int /* page_seq_no */,
540 GURL /* url */) 538 GURL /* url */)
541 539
542 // Tells InstantExtended whether the page supports voice search.
543 IPC_MESSAGE_ROUTED2(ChromeViewHostMsg_SetVoiceSearchSupported,
544 int /* page_seq_no */,
545 bool /* supported */)
546
547 // Tells the renderer a list of URLs which should be bounced back to the browser 540 // Tells the renderer a list of URLs which should be bounced back to the browser
548 // process so that they can be assigned to an Instant renderer. 541 // process so that they can be assigned to an Instant renderer.
549 IPC_MESSAGE_CONTROL2(ChromeViewMsg_SetSearchURLs, 542 IPC_MESSAGE_CONTROL2(ChromeViewMsg_SetSearchURLs,
550 std::vector<GURL> /* search_urls */, 543 std::vector<GURL> /* search_urls */,
551 GURL /* new_tab_page_url */) 544 GURL /* new_tab_page_url */)
552 545
553 #if defined(ENABLE_PLUGINS) 546 #if defined(ENABLE_PLUGINS)
554 // Sent by the renderer to check if crash reporting is enabled. 547 // Sent by the renderer to check if crash reporting is enabled.
555 IPC_SYNC_MESSAGE_CONTROL0_1(ChromeViewHostMsg_IsCrashReportingEnabled, 548 IPC_SYNC_MESSAGE_CONTROL0_1(ChromeViewHostMsg_IsCrashReportingEnabled,
556 bool /* enabled */) 549 bool /* enabled */)
(...skipping 16 matching lines...) Expand all
573 566
574 // Record a sample string to a Rappor metric. 567 // Record a sample string to a Rappor metric.
575 IPC_MESSAGE_CONTROL2(ChromeViewHostMsg_RecordRappor, 568 IPC_MESSAGE_CONTROL2(ChromeViewHostMsg_RecordRappor,
576 std::string /* metric */, 569 std::string /* metric */,
577 std::string /* sample */) 570 std::string /* sample */)
578 571
579 // Record a domain and registry of a url to a Rappor metric. 572 // Record a domain and registry of a url to a Rappor metric.
580 IPC_MESSAGE_CONTROL2(ChromeViewHostMsg_RecordRapporURL, 573 IPC_MESSAGE_CONTROL2(ChromeViewHostMsg_RecordRapporURL,
581 std::string /* metric */, 574 std::string /* metric */,
582 GURL /* sample url */) 575 GURL /* sample url */)
OLDNEW
« no previous file with comments | « chrome/chrome_browser_ui.gypi ('k') | chrome/renderer/resources/extensions/searchbox_api.js » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698