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

Unified Diff: chrome/browser/user_style_sheet_watcher.h

Issue 8437002: Move BrowserThread to content namespace. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: A few updates. Created 9 years, 2 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
« no previous file with comments | « chrome/browser/upgrade_detector_impl.cc ('k') | chrome/browser/user_style_sheet_watcher.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/browser/user_style_sheet_watcher.h
diff --git a/chrome/browser/user_style_sheet_watcher.h b/chrome/browser/user_style_sheet_watcher.h
index 8b0296ad4cb6124f01ea991b39b63a28fae69bd2..4fd02438f8b8a092a1edaba81c01025f7e8203b3 100644
--- a/chrome/browser/user_style_sheet_watcher.h
+++ b/chrome/browser/user_style_sheet_watcher.h
@@ -21,8 +21,9 @@ class UserStyleSheetLoader;
// Watches the user style sheet file and triggers reloads on the file thread
// whenever the file changes.
class UserStyleSheetWatcher
- : public base::RefCountedThreadSafe<UserStyleSheetWatcher,
- BrowserThread::DeleteOnUIThread>,
+ : public base::RefCountedThreadSafe<
+ UserStyleSheetWatcher,
+ content::BrowserThread::DeleteOnUIThread>,
public content::NotificationObserver {
public:
UserStyleSheetWatcher(Profile* profile, const FilePath& profile_path);
@@ -37,7 +38,8 @@ class UserStyleSheetWatcher
const content::NotificationDetails& details);
private:
- friend struct BrowserThread::DeleteOnThread<BrowserThread::UI>;
+ friend struct content::BrowserThread::DeleteOnThread<
+ content::BrowserThread::UI>;
friend class DeleteTask<UserStyleSheetWatcher>;
virtual ~UserStyleSheetWatcher();
« no previous file with comments | « chrome/browser/upgrade_detector_impl.cc ('k') | chrome/browser/user_style_sheet_watcher.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698