Fix for uninitialized access.
[chromium-blink-merge.git] / extensions / common / ad_injection_constants.h
blob8570b29da4043581fb164791f80272ed93d17386
1 // Copyright 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 EXTENSIONS_COMMON_AD_INJECTION_CONSTANTS_H_
6 #define EXTENSIONS_COMMON_AD_INJECTION_CONSTANTS_H_
8 #include <string>
10 #include "base/basictypes.h"
12 namespace extensions {
13 namespace ad_injection_constants {
15 // The keys used when serializing arguments to activity action APIs.
16 namespace keys {
18 extern const char kType[];
19 extern const char kChildren[];
20 extern const char kSrc[];
21 extern const char kHref[];
23 } // namespace keys
25 extern const char kHtmlIframeSrcApiName[];
26 extern const char kHtmlEmbedSrcApiName[];
27 extern const char kHtmlAnchorHrefApiName[];
28 extern const char kAppendChildApiSuffix[];
30 extern const size_t kMaximumChildrenToCheck;
31 extern const size_t kMaximumDepthToCheck;
33 // Returns true if the given |api| can potentially inject ads, and should
34 // therefore be examined.
35 bool ApiCanInjectAds(const std::string& api);
37 } // namespace ad_injection_constants
38 } // namespace extensions
40 #endif // EXTENSIONS_COMMON_AD_INJECTION_CONSTANTS_H_