| 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 <stddef.h> | 7 #include <stddef.h> |
| 8 #include <utility> | 8 #include <utility> |
| 9 | 9 |
| 10 #include "base/bind.h" | 10 #include "base/bind.h" |
| 11 #include "base/lazy_instance.h" | 11 #include "base/lazy_instance.h" |
| 12 #include "base/macros.h" | 12 #include "base/macros.h" |
| 13 #include "base/memory/scoped_vector.h" | 13 #include "base/memory/scoped_vector.h" |
| 14 #include "base/metrics/histogram.h" | 14 #include "base/metrics/histogram.h" |
| 15 #include "base/strings/stringprintf.h" | 15 #include "base/strings/stringprintf.h" |
| 16 #include "base/strings/utf_string_conversions.h" | 16 #include "base/strings/utf_string_conversions.h" |
| 17 #include "base/thread_task_runner_handle.h" | 17 #include "base/threading/thread_task_runner_handle.h" |
| 18 #include "base/values.h" | 18 #include "base/values.h" |
| 19 #include "base/version.h" | 19 #include "base/version.h" |
| 20 #include "chrome/browser/bitmap_fetcher/bitmap_fetcher.h" | 20 #include "chrome/browser/bitmap_fetcher/bitmap_fetcher.h" |
| 21 #include "chrome/browser/extensions/crx_installer.h" | 21 #include "chrome/browser/extensions/crx_installer.h" |
| 22 #include "chrome/browser/extensions/extension_install_ui_util.h" | 22 #include "chrome/browser/extensions/extension_install_ui_util.h" |
| 23 #include "chrome/browser/extensions/extension_service.h" | 23 #include "chrome/browser/extensions/extension_service.h" |
| 24 #include "chrome/browser/extensions/install_tracker.h" | 24 #include "chrome/browser/extensions/install_tracker.h" |
| 25 #include "chrome/browser/gpu/gpu_feature_checker.h" | 25 #include "chrome/browser/gpu/gpu_feature_checker.h" |
| 26 #include "chrome/browser/profiles/profile.h" | 26 #include "chrome/browser/profiles/profile.h" |
| 27 #include "chrome/browser/signin/signin_manager_factory.h" | 27 #include "chrome/browser/signin/signin_manager_factory.h" |
| (...skipping 569 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 597 WebstorePrivateGetEphemeralAppsEnabledFunction:: | 597 WebstorePrivateGetEphemeralAppsEnabledFunction:: |
| 598 ~WebstorePrivateGetEphemeralAppsEnabledFunction() {} | 598 ~WebstorePrivateGetEphemeralAppsEnabledFunction() {} |
| 599 | 599 |
| 600 ExtensionFunction::ResponseAction | 600 ExtensionFunction::ResponseAction |
| 601 WebstorePrivateGetEphemeralAppsEnabledFunction::Run() { | 601 WebstorePrivateGetEphemeralAppsEnabledFunction::Run() { |
| 602 return RespondNow(ArgumentList(GetEphemeralAppsEnabled::Results::Create( | 602 return RespondNow(ArgumentList(GetEphemeralAppsEnabled::Results::Create( |
| 603 false))); | 603 false))); |
| 604 } | 604 } |
| 605 | 605 |
| 606 } // namespace extensions | 606 } // namespace extensions |
| OLD | NEW |