Disable view source for Developer Tools.
[chromium-blink-merge.git] / chrome / common / extensions / features / api_feature.cc
blobd53d105bc267bcbac7ecb7c26ed9da1fad32d633
1 // Copyright (c) 2012 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 #include "chrome/common/extensions/features/api_feature.h"
7 namespace extensions {
9 APIFeature::APIFeature() : internal_(false) {
12 APIFeature::~APIFeature() {
15 bool APIFeature::IsInternal() const {
16 return internal_;
19 std::string APIFeature::Parse(const base::DictionaryValue* value) {
20 std::string error = SimpleFeature::Parse(value);
21 if (!error.empty())
22 return error;
24 value->GetBoolean("internal", &internal_);
26 if (GetContexts()->empty())
27 return name() + ": API features must specify at least one context.";
29 return std::string();
32 } // namespace