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

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

Issue 2151483004: Remove embeddedSearch.newTabPage.GetAppLauncherEnabled (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: remove test filter, rebase Created 4 years, 5 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 <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 208 matching lines...) Expand 10 before | Expand all | Expand 10 after
219 IPC_MESSAGE_ROUTED1(ChromeViewMsg_SearchBoxSetDisplayInstantResults, 219 IPC_MESSAGE_ROUTED1(ChromeViewMsg_SearchBoxSetDisplayInstantResults,
220 bool /* display_instant_results */) 220 bool /* display_instant_results */)
221 221
222 IPC_MESSAGE_ROUTED2(ChromeViewMsg_SearchBoxFocusChanged, 222 IPC_MESSAGE_ROUTED2(ChromeViewMsg_SearchBoxFocusChanged,
223 OmniboxFocusState /* new_focus_state */, 223 OmniboxFocusState /* new_focus_state */,
224 OmniboxFocusChangeReason /* reason */) 224 OmniboxFocusChangeReason /* reason */)
225 225
226 IPC_MESSAGE_ROUTED1(ChromeViewMsg_SearchBoxMostVisitedItemsChanged, 226 IPC_MESSAGE_ROUTED1(ChromeViewMsg_SearchBoxMostVisitedItemsChanged,
227 std::vector<InstantMostVisitedItem> /* items */) 227 std::vector<InstantMostVisitedItem> /* items */)
228 228
229 IPC_MESSAGE_ROUTED1(ChromeViewMsg_SearchBoxPromoInformation,
230 bool /* is_app_launcher_enabled */)
231
232 IPC_MESSAGE_ROUTED1(ChromeViewMsg_SearchBoxSetInputInProgress, 229 IPC_MESSAGE_ROUTED1(ChromeViewMsg_SearchBoxSetInputInProgress,
233 bool /* input_in_progress */) 230 bool /* input_in_progress */)
234 231
235 IPC_MESSAGE_ROUTED1(ChromeViewMsg_SearchBoxSetSuggestionToPrefetch, 232 IPC_MESSAGE_ROUTED1(ChromeViewMsg_SearchBoxSetSuggestionToPrefetch,
236 InstantSuggestion /* suggestion */) 233 InstantSuggestion /* suggestion */)
237 234
238 IPC_MESSAGE_ROUTED2(ChromeViewMsg_SearchBoxSubmit, 235 IPC_MESSAGE_ROUTED2(ChromeViewMsg_SearchBoxSubmit,
239 base::string16 /* value */, 236 base::string16 /* value */,
240 EmbeddedSearchRequestParams /* params */) 237 EmbeddedSearchRequestParams /* params */)
241 238
(...skipping 328 matching lines...) Expand 10 before | Expand all | Expand 10 after
570 567
571 // Record a sample string to a Rappor metric. 568 // Record a sample string to a Rappor metric.
572 IPC_MESSAGE_CONTROL2(ChromeViewHostMsg_RecordRappor, 569 IPC_MESSAGE_CONTROL2(ChromeViewHostMsg_RecordRappor,
573 std::string /* metric */, 570 std::string /* metric */,
574 std::string /* sample */) 571 std::string /* sample */)
575 572
576 // Record a domain and registry of a url to a Rappor metric. 573 // Record a domain and registry of a url to a Rappor metric.
577 IPC_MESSAGE_CONTROL2(ChromeViewHostMsg_RecordRapporURL, 574 IPC_MESSAGE_CONTROL2(ChromeViewHostMsg_RecordRapporURL,
578 std::string /* metric */, 575 std::string /* metric */,
579 GURL /* sample url */) 576 GURL /* sample url */)
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698