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

Unified Diff: chrome/browser/user_style_sheet_watcher.cc

Issue 10071036: RefCounted types should not have public destructors, chrome/browser/ part 6 (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Implementation fixes 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/user_style_sheet_watcher.cc
diff --git a/chrome/browser/user_style_sheet_watcher.cc b/chrome/browser/user_style_sheet_watcher.cc
index 4f909c1be018c3f6ddb57bcfacb15304aaf61154..5f27d8fceb101976428135ab4a6b9e0ed0cc5b6a 100644
--- a/chrome/browser/user_style_sheet_watcher.cc
+++ b/chrome/browser/user_style_sheet_watcher.cc
@@ -47,7 +47,6 @@ const char kUserStyleSheetFile[] = "Custom.css";
class UserStyleSheetLoader : public FilePathWatcher::Delegate {
public:
UserStyleSheetLoader();
- virtual ~UserStyleSheetLoader() {}
GURL user_style_sheet() const {
return user_style_sheet_;
@@ -64,6 +63,8 @@ class UserStyleSheetLoader : public FilePathWatcher::Delegate {
virtual void OnFilePathChanged(const FilePath& path);
private:
+ virtual ~UserStyleSheetLoader() {}
+
// Called on the UI thread after the stylesheet has loaded.
void SetStyleSheet(const GURL& url);
« no previous file with comments | « chrome/browser/status_icons/desktop_notification_balloon.cc ('k') | chrome/browser/webdata/web_data_service_unittest.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698