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

Unified Diff: extensions/browser/extension_prefs.h

Issue 337323003: Remove the ability to retain local data of evicted ephemeral apps (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Remove an unused declaration Created 6 years, 6 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 side-by-side diff with in-line comments
Download patch
Index: extensions/browser/extension_prefs.h
diff --git a/extensions/browser/extension_prefs.h b/extensions/browser/extension_prefs.h
index dbd734d4aa1671fc057ddee71cf059bc85d5a421..988870c42399c1612cc04851bd1760eaaee18059 100644
--- a/extensions/browser/extension_prefs.h
+++ b/extensions/browser/extension_prefs.h
@@ -481,17 +481,6 @@ class ExtensionPrefs : public ExtensionScopedPrefs, public KeyedService {
// information.
scoped_ptr<ExtensionsInfo> GetAllDelayedInstallInfo() const;
- // Returns information about evicted ephemeral apps.
- scoped_ptr<ExtensionsInfo> GetEvictedEphemeralAppsInfo() const;
-
- // Return information about a specific evicted ephemeral app. Can return NULL
- // if no such evicted app exists or is currently installed.
- scoped_ptr<ExtensionInfo> GetEvictedEphemeralAppInfo(
- const std::string& extension_id) const;
-
- // Permanently remove the preferences for an evicted ephemeral app.
- void RemoveEvictedEphemeralApp(const std::string& extension_id);
-
// Returns true if the extension is an ephemeral app.
bool IsEphemeralApp(const std::string& extension_id) const;

Powered by Google App Engine
This is Rietveld 408576698