Revert "Reland c91b178b07b0d - Delete dead signin code (SigninGlobalError)"
[chromium-blink-merge.git] / chrome / browser / extensions / activity_log / activity_action_constants.h
blob38e76e6aa493255655df4d50aea34935aa5402e1
1 // Copyright 2013 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 // String constants used when logging data in the extension activity log.
7 #ifndef CHROME_BROWSER_EXTENSIONS_ACTIVITY_LOG_ACTIVITY_ACTION_CONSTANTS_H_
8 #define CHROME_BROWSER_EXTENSIONS_ACTIVITY_LOG_ACTIVITY_ACTION_CONSTANTS_H_
10 namespace activity_log_constants {
12 // Keys that may be used in the "other" attribute of an Action.
13 extern const char kActionDomVerb[];
14 extern const char kActionExtra[];
15 extern const char kActionPrerender[];
16 extern const char kActionWebRequest[];
18 // A string used in place of the real URL when the URL is hidden because it is
19 // in an incognito window. Extension activity logs mentioning kIncognitoUrl
20 // let the user know that an extension is manipulating incognito tabs without
21 // recording specific data about the pages.
22 extern const char kIncognitoUrl[];
24 // A string used as a placeholder for URLs which have been removed from the
25 // argument list and stored to the arg_url field.
26 extern const char kArgUrlPlaceholder[];
28 } // namespace activity_log_constants
30 #endif // CHROME_BROWSER_EXTENSIONS_ACTIVITY_LOG_ACTIVITY_ACTION_CONSTANTS_H_