| OLD | NEW |
| 1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. | 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 | 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/extensions/features/feature.h" | 5 #include "extensions/common/features/feature.h" |
| 6 | 6 |
| 7 #include <map> | 7 #include <map> |
| 8 | 8 |
| 9 #include "base/command_line.h" | 9 #include "base/command_line.h" |
| 10 #include "base/lazy_instance.h" | 10 #include "base/lazy_instance.h" |
| 11 #include "base/strings/string_util.h" | 11 #include "base/strings/string_util.h" |
| 12 #include "base/strings/stringprintf.h" | 12 #include "base/strings/stringprintf.h" |
| 13 | 13 |
| 14 namespace extensions { | 14 namespace extensions { |
| 15 | 15 |
| (...skipping 18 matching lines...) Expand all Loading... |
| 34 Feature::Availability Feature::CreateAvailability(AvailabilityResult result, | 34 Feature::Availability Feature::CreateAvailability(AvailabilityResult result, |
| 35 const std::string& message) { | 35 const std::string& message) { |
| 36 return Availability(result, message); | 36 return Availability(result, message); |
| 37 } | 37 } |
| 38 | 38 |
| 39 Feature::Feature() : no_parent_(false) {} | 39 Feature::Feature() : no_parent_(false) {} |
| 40 | 40 |
| 41 Feature::~Feature() {} | 41 Feature::~Feature() {} |
| 42 | 42 |
| 43 } // namespace extensions | 43 } // namespace extensions |
| OLD | NEW |