| OLD | NEW |
| (Empty) | |
| 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 |
| 3 // found in the LICENSE file. |
| 4 |
| 5 // Singly or multiply-included shared traits file depending upon circumstances. |
| 6 // Hence provide an include guard symbol but no pragma once. |
| 7 #ifndef CHROME_COMMON_COMMON_PARAM_TRAITS_MACROS_H_ |
| 8 #define CHROME_COMMON_COMMON_PARAM_TRAITS_MACROS_H_ |
| 9 |
| 10 #include "chrome/common/content_settings.h" |
| 11 #include "ipc/ipc_message_macros.h" |
| 12 |
| 13 IPC_ENUM_TRAITS(ContentSetting) |
| 14 IPC_ENUM_TRAITS(ContentSettingsType) |
| 15 |
| 16 #endif // CHROME_COMMON_COMMON_PARAM_TRAITS_MACROS_H_ |
| OLD | NEW |