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

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

Issue 10577040: Generate param traits even when shared by mutliple message files. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src/
Patch Set: Created 8 years, 6 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 | Annotate | Revision Log
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 #ifndef CHROME_COMMON_COMMON_PARAM_TRAITS_H_ 5 #ifndef CHROME_COMMON_COMMON_PARAM_TRAITS_H_
jam 2012/06/25 19:52:24 nit: in this file and the one in content, please a
Tom Sepez 2012/06/25 20:30:24 Added comment to chrome/ file; one in content/ alr
6 #define CHROME_COMMON_COMMON_PARAM_TRAITS_H_ 6 #define CHROME_COMMON_COMMON_PARAM_TRAITS_H_
7 #pragma once 7 #pragma once
8 8
9 #include <string> 9 #include "chrome/common/common_param_traits_macros.h"
10
11 #include "chrome/common/content_settings.h"
12 #include "ipc/ipc_param_traits.h"
13
14 class PickleIterator;
15
16 namespace IPC {
17
18 class Message;
19
20 template <>
21 struct ParamTraits<ContentSetting> {
22 typedef ContentSetting param_type;
23 static void Write(Message* m, const param_type& p);
24 static bool Read(const Message* m, PickleIterator* iter, param_type* p);
25 static void Log(const param_type& p, std::string* l);
26 };
27
28 template <>
29 struct ParamTraits<ContentSettingsType> {
30 typedef ContentSettingsType param_type;
31 static void Write(Message* m, const param_type& p);
32 static bool Read(const Message* m, PickleIterator* iter, param_type* p);
33 static void Log(const param_type& p, std::string* l);
34 };
35
36 } // namespace IPC
37 10
38 #endif // CHROME_COMMON_COMMON_PARAM_TRAITS_H_ 11 #endif // CHROME_COMMON_COMMON_PARAM_TRAITS_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698