| 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/browser/extensions/api/webstore_private/webstore_private_api.h" | 5 #include "chrome/browser/extensions/api/webstore_private/webstore_private_api.h" |
| 6 | 6 |
| 7 #include "base/bind_helpers.h" | 7 #include "base/bind_helpers.h" |
| 8 #include "base/lazy_instance.h" | 8 #include "base/lazy_instance.h" |
| 9 #include "base/memory/scoped_vector.h" | 9 #include "base/memory/scoped_vector.h" |
| 10 #include "base/metrics/histogram.h" | 10 #include "base/metrics/histogram.h" |
| (...skipping 701 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 712 | 712 |
| 713 WebstorePrivateGetEphemeralAppsEnabledFunction:: | 713 WebstorePrivateGetEphemeralAppsEnabledFunction:: |
| 714 WebstorePrivateGetEphemeralAppsEnabledFunction() {} | 714 WebstorePrivateGetEphemeralAppsEnabledFunction() {} |
| 715 | 715 |
| 716 WebstorePrivateGetEphemeralAppsEnabledFunction:: | 716 WebstorePrivateGetEphemeralAppsEnabledFunction:: |
| 717 ~WebstorePrivateGetEphemeralAppsEnabledFunction() {} | 717 ~WebstorePrivateGetEphemeralAppsEnabledFunction() {} |
| 718 | 718 |
| 719 ExtensionFunction::ResponseAction | 719 ExtensionFunction::ResponseAction |
| 720 WebstorePrivateGetEphemeralAppsEnabledFunction::Run() { | 720 WebstorePrivateGetEphemeralAppsEnabledFunction::Run() { |
| 721 return RespondNow(ArgumentList(GetEphemeralAppsEnabled::Results::Create( | 721 return RespondNow(ArgumentList(GetEphemeralAppsEnabled::Results::Create( |
| 722 EphemeralAppLauncher::IsFeatureEnabledInWebstore()))); | 722 EphemeralAppLauncher::IsFeatureEnabled()))); |
| 723 } | 723 } |
| 724 | 724 |
| 725 } // namespace extensions | 725 } // namespace extensions |
| OLD | NEW |