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

Side by Side Diff: content/common/gpu_host_messages.h

Issue 2803743002: Mojofy GpuHostMsg_FieldTrialActivated (Closed)
Patch Set: fix warning Created 3 years, 8 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
(Empty)
1 // Copyright 2016 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file.
4
5 // Multiply-included message file, hence no include guard here, but see below
6 // for a much smaller-than-usual include guard section.
7
8 #include "build/build_config.h"
9 #include "ipc/ipc_message_macros.h"
10 #include "ipc/ipc_message_start.h"
11
12 #undef IPC_MESSAGE_EXPORT
13 #define IPC_MESSAGE_EXPORT CONTENT_EXPORT
14
15 #define IPC_MESSAGE_START GpuMsgStart
Tom Sepez 2017/04/06 16:59:05 Can you remove the #define of GpuMsgStart in ipc/i
chiniforooshan 2017/04/06 17:04:36 Done.
16
17 //------------------------------------------------------------------------------
18 // GPU Host Messages
19 // These are messages to the browser.
20
21 // Sent by the GPU process to indicate that a fields trial has been activated.
22 IPC_MESSAGE_CONTROL1(GpuHostMsg_FieldTrialActivated, std::string /* name */)
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698