Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(212)

Side by Side Diff: chrome/browser/extensions/api/webstore_private/webstore_private_api.cc

Issue 934683002: Remove ability to launch ephemeral apps from the app launcher. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Remove resources Created 5 years, 10 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
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
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
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698