Revert of Add button to add new FSP services to Files app. (patchset #8 id:140001...
[chromium-blink-merge.git] / chrome / browser / content_settings / chrome_content_settings_utils.h
blob8d07cc9c7905bd873c9f270595e4d154fd669a23
1 // Copyright (c) 2014 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.
5 #ifndef CHROME_BROWSER_CONTENT_SETTINGS_CHROME_CONTENT_SETTINGS_UTILS_H_
6 #define CHROME_BROWSER_CONTENT_SETTINGS_CHROME_CONTENT_SETTINGS_UTILS_H_
8 // Put utility functions only used by //chrome code here. If a function declared
9 // here would be meaningfully shared with other platforms, consider moving it to
10 // components/content_settings/core/browser/content_settings_utils.h.
12 namespace content_settings {
14 // UMA statistics for the mixed content shield
15 enum MixedScriptAction {
16 MIXED_SCRIPT_ACTION_DISPLAYED_SHIELD = 0,
17 MIXED_SCRIPT_ACTION_DISPLAYED_BUBBLE,
18 MIXED_SCRIPT_ACTION_CLICKED_ALLOW,
19 MIXED_SCRIPT_ACTION_CLICKED_LEARN_MORE,
20 MIXED_SCRIPT_ACTION_COUNT
23 void RecordMixedScriptAction(MixedScriptAction action);
25 } // namespace content_settings
27 #endif // CHROME_BROWSER_CONTENT_SETTINGS_CHROME_CONTENT_SETTINGS_UTILS_H_