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

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

Issue 7711016: Fixed a few places that should know about CONTENT_SETTINGS_TYPE_INTENTS (Closed) Base URL: http://git.chromium.org/git/chromium.git@trunk
Patch Set: Created 9 years, 4 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
« no previous file with comments | « chrome/browser/content_settings/content_settings_utils.cc ('k') | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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
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
OLDNEW
« no previous file with comments | « chrome/browser/content_settings/content_settings_utils.cc ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698