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

Side by Side Diff: components/rappor/rappor_messages.cc

Issue 1014543003: Add an IPC method for Blink to call RapporService::RecordSample() (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Comments and cleanup Created 5 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
1 // Copyright (c) 2010 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2015 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 // Get basic type definitions. 5 #include "base/basictypes.h"
6
6 #define IPC_MESSAGE_IMPL 7 #define IPC_MESSAGE_IMPL
7 #include "ppapi/proxy/ppapi_messages.h" 8 #include "components/rappor/rappor_messages.h"
8 9
9 // Generate constructors. 10 // Generate constructors.
10 #include "ipc/struct_constructor_macros.h" 11 #include "ipc/struct_constructor_macros.h"
11 #include "ppapi/proxy/ppapi_messages.h" 12 #include "components/rappor/rappor_messages.h"
12 13
13 // Generate destructors. 14 // Generate destructors.
14 #include "ipc/struct_destructor_macros.h" 15 #include "ipc/struct_destructor_macros.h"
15 #include "ppapi/proxy/ppapi_messages.h" 16 #include "components/rappor/rappor_messages.h"
16 17
17 // Generate param traits write methods. 18 // Generate param traits write methods.
18 #include "ipc/param_traits_write_macros.h" 19 #include "ipc/param_traits_write_macros.h"
19 namespace IPC { 20 namespace IPC {
20 #include "ppapi/proxy/ppapi_messages.h" 21 #include "components/rappor/rappor_messages.h"
21 } // namespace IPC 22 } // namespace IPC
22 23
23 // Generate param traits read methods. 24 // Generate param traits read methods.
24 #include "ipc/param_traits_read_macros.h" 25 #include "ipc/param_traits_read_macros.h"
25 namespace IPC { 26 namespace IPC {
26 #include "ppapi/proxy/ppapi_messages.h" 27 #include "components/rappor/rappor_messages.h"
27 } // namespace IPC 28 } // namespace IPC
28 29
29 // Generate param traits log methods. 30 // Generate param traits log methods.
30 #include "ipc/param_traits_log_macros.h" 31 #include "ipc/param_traits_log_macros.h"
31 namespace IPC { 32 namespace IPC {
32 #include "ppapi/proxy/ppapi_messages.h" 33 #include "components/rappor/rappor_messages.h"
33 } // namespace IPC 34 } // namespace IPC
34
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698