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

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

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