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

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

Issue 2512563003: Convert enable_plugins to a buildflag header. (Closed)
Patch Set: Merge Created 4 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/common/pref_names.cc ('k') | chrome/renderer/BUILD.gn » ('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 574 matching lines...) Expand 10 before | Expand all | Expand 10 after
585 IPC_MESSAGE_ROUTED2(ChromeViewHostMsg_SearchBoxUndoMostVisitedDeletion, 585 IPC_MESSAGE_ROUTED2(ChromeViewHostMsg_SearchBoxUndoMostVisitedDeletion,
586 int /* page_seq_no */, 586 int /* page_seq_no */,
587 GURL /* url */) 587 GURL /* url */)
588 588
589 // Tells the renderer a list of URLs which should be bounced back to the browser 589 // Tells the renderer a list of URLs which should be bounced back to the browser
590 // process so that they can be assigned to an Instant renderer. 590 // process so that they can be assigned to an Instant renderer.
591 IPC_MESSAGE_CONTROL2(ChromeViewMsg_SetSearchURLs, 591 IPC_MESSAGE_CONTROL2(ChromeViewMsg_SetSearchURLs,
592 std::vector<GURL> /* search_urls */, 592 std::vector<GURL> /* search_urls */,
593 GURL /* new_tab_page_url */) 593 GURL /* new_tab_page_url */)
594 594
595 #if defined(ENABLE_PLUGINS) 595 #if BUILDFLAG(ENABLE_PLUGINS)
596 // Sent by the renderer to check if crash reporting is enabled. 596 // Sent by the renderer to check if crash reporting is enabled.
597 IPC_SYNC_MESSAGE_CONTROL0_1(ChromeViewHostMsg_IsCrashReportingEnabled, 597 IPC_SYNC_MESSAGE_CONTROL0_1(ChromeViewHostMsg_IsCrashReportingEnabled,
598 bool /* enabled */) 598 bool /* enabled */)
599 #endif 599 #endif
600 600
601 // Sent by the renderer to indicate that a fields trial has been activated. 601 // Sent by the renderer to indicate that a fields trial has been activated.
602 IPC_MESSAGE_CONTROL1(ChromeViewHostMsg_FieldTrialActivated, 602 IPC_MESSAGE_CONTROL1(ChromeViewHostMsg_FieldTrialActivated,
603 std::string /* name */) 603 std::string /* name */)
OLDNEW
« no previous file with comments | « chrome/common/pref_names.cc ('k') | chrome/renderer/BUILD.gn » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698