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

Unified Diff: chrome/browser/policy/app_pack_updater.cc

Issue 10386206: RefCounted types should not have public destructors, chromeos edition (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Rebase to r143931 Created 8 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: chrome/browser/policy/app_pack_updater.cc
diff --git a/chrome/browser/policy/app_pack_updater.cc b/chrome/browser/policy/app_pack_updater.cc
index 6d32cb18e5539c2b803c5316dbaafd43d8ff674c..32c46b2651275ce03994387d6e43b8a568c62b6d 100644
--- a/chrome/browser/policy/app_pack_updater.cc
+++ b/chrome/browser/policy/app_pack_updater.cc
@@ -52,7 +52,6 @@ class AppPackExternalExtensionLoader
public base::SupportsWeakPtr<AppPackExternalExtensionLoader> {
public:
AppPackExternalExtensionLoader() {}
- virtual ~AppPackExternalExtensionLoader() {}
// Used by the AppPackUpdater to update the current list of extensions.
// The format of |prefs| is detailed in the ExternalExtensionLoader/Provider
@@ -70,6 +69,9 @@ class AppPackExternalExtensionLoader
LoadFinished();
}
+ protected:
+ virtual ~AppPackExternalExtensionLoader() {}
+
private:
base::DictionaryValue app_pack_prefs_;
« no previous file with comments | « chrome/browser/extensions/api/terminal/terminal_private_api.cc ('k') | chrome/browser/ui/views/extensions/extension_dialog.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698