OLD | NEW |
1 // Copyright (c) 2011 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2011 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 #include "chrome/common/common_param_traits.h" | 5 #include "chrome/common/common_param_traits.h" |
6 | 6 |
7 #include "ipc/ipc_message.h" | 7 #include "ipc/ipc_message.h" |
8 #include "ipc/ipc_message_utils.h" | 8 #include "ipc/ipc_message_utils.h" |
9 | 9 |
10 namespace IPC { | 10 namespace IPC { |
(...skipping 70 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
81 break; | 81 break; |
82 case CONTENT_SETTINGS_TYPE_POPUPS: | 82 case CONTENT_SETTINGS_TYPE_POPUPS: |
83 setting_type = "CONTENT_SETTINGS_TYPE_POPUPS"; | 83 setting_type = "CONTENT_SETTINGS_TYPE_POPUPS"; |
84 break; | 84 break; |
85 case CONTENT_SETTINGS_TYPE_GEOLOCATION: | 85 case CONTENT_SETTINGS_TYPE_GEOLOCATION: |
86 setting_type = "CONTENT_SETTINGS_TYPE_GEOLOCATION"; | 86 setting_type = "CONTENT_SETTINGS_TYPE_GEOLOCATION"; |
87 break; | 87 break; |
88 case CONTENT_SETTINGS_TYPE_NOTIFICATIONS: | 88 case CONTENT_SETTINGS_TYPE_NOTIFICATIONS: |
89 setting_type = "CONTENT_SETTINGS_TYPE_NOTIFICATIONS"; | 89 setting_type = "CONTENT_SETTINGS_TYPE_NOTIFICATIONS"; |
90 break; | 90 break; |
| 91 case CONTENT_SETTINGS_TYPE_INTENTS: |
| 92 setting_type = "CONTENT_SETTINGS_TYPE_INTENTS"; |
| 93 break; |
91 default: | 94 default: |
92 setting_type = "UNKNOWN"; | 95 setting_type = "UNKNOWN"; |
93 break; | 96 break; |
94 } | 97 } |
95 LogParam(setting_type, l); | 98 LogParam(setting_type, l); |
96 } | 99 } |
97 | 100 |
98 } // namespace IPC | 101 } // namespace IPC |
OLD | NEW |