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

Unified Diff: chrome/browser/extensions/updater/safe_manifest_parser.h

Issue 10071035: RefCounted types should not have public destructors, chrome/browser/extensions (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Compile fix Created 8 years, 8 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/extensions/updater/safe_manifest_parser.h
diff --git a/chrome/browser/extensions/updater/safe_manifest_parser.h b/chrome/browser/extensions/updater/safe_manifest_parser.h
index 9440e7eab2000f63e82f08e413223b6d6f11607a..4e972cb618e36e6a29bd528b4551102ce977e3eb 100644
--- a/chrome/browser/extensions/updater/safe_manifest_parser.h
+++ b/chrome/browser/extensions/updater/safe_manifest_parser.h
@@ -28,17 +28,17 @@ class SafeManifestParser : public content::UtilityProcessHostClient {
ManifestFetchData* fetch_data,
const UpdateCallback& update_callback);
- virtual ~SafeManifestParser();
-
// Posts a task over to the IO loop to start the parsing of xml_ in a
// utility process.
void Start();
private:
+ virtual ~SafeManifestParser();
+
// Creates the sandboxed utility process and tells it to start parsing.
void ParseInSandbox();
- // UtilityProcessHostClient implementation.
+ // content::UtilityProcessHostClient implementation.
virtual bool OnMessageReceived(const IPC::Message& message) OVERRIDE;
void OnParseUpdateManifestSucceeded(const UpdateManifest::Results& results);
« no previous file with comments | « chrome/browser/extensions/system/system_api.h ('k') | chrome/browser/extensions/updater/safe_manifest_parser.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698