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

Side by Side Diff: chrome/browser/user_style_sheet_watcher.cc

Issue 6731064: kqueue implementation of FilePathWatcher on Mac. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Xcode didn't save some files, so win and linux changes missed Created 9 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 unified diff | Download patch | Annotate | Revision Log
OLDNEW
1 // Copyright (c) 2011 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2011 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be 2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file. 3 // found in the LICENSE file.
4 4
5 #include "chrome/browser/user_style_sheet_watcher.h" 5 #include "chrome/browser/user_style_sheet_watcher.h"
6 6
7 #include "base/base64.h" 7 #include "base/base64.h"
8 #include "base/file_util.h" 8 #include "base/file_util.h"
9 #include "content/common/notification_service.h" 9 #include "content/common/notification_service.h"
10 #include "content/common/notification_type.h" 10 #include "content/common/notification_type.h"
(...skipping 132 matching lines...) Expand 10 before | Expand all | Expand 10 after
143 NewRunnableMethod(this, &UserStyleSheetWatcher::Init)); 143 NewRunnableMethod(this, &UserStyleSheetWatcher::Init));
144 return; 144 return;
145 } 145 }
146 146
147 if (!file_watcher_.get()) { 147 if (!file_watcher_.get()) {
148 file_watcher_.reset(new FilePathWatcher); 148 file_watcher_.reset(new FilePathWatcher);
149 FilePath style_sheet_file = profile_path_.AppendASCII(kStyleSheetDir) 149 FilePath style_sheet_file = profile_path_.AppendASCII(kStyleSheetDir)
150 .AppendASCII(kUserStyleSheetFile); 150 .AppendASCII(kUserStyleSheetFile);
151 if (!file_watcher_->Watch( 151 if (!file_watcher_->Watch(
152 style_sheet_file, 152 style_sheet_file,
153 loader_.get(), 153 loader_.get())) {
154 BrowserThread::GetMessageLoopProxyForThread(BrowserThread::UI))) {
155 LOG(ERROR) << "Failed to setup watch for " << style_sheet_file.value(); 154 LOG(ERROR) << "Failed to setup watch for " << style_sheet_file.value();
156 } 155 }
157 loader_->LoadStyleSheet(style_sheet_file); 156 loader_->LoadStyleSheet(style_sheet_file);
158 } 157 }
159 } 158 }
160 159
161 GURL UserStyleSheetWatcher::user_style_sheet() const { 160 GURL UserStyleSheetWatcher::user_style_sheet() const {
162 return loader_->user_style_sheet(); 161 return loader_->user_style_sheet();
163 } 162 }
164 163
165 void UserStyleSheetWatcher::Observe(NotificationType type, 164 void UserStyleSheetWatcher::Observe(NotificationType type,
166 const NotificationSource& source, const NotificationDetails& details) { 165 const NotificationSource& source, const NotificationDetails& details) {
167 DCHECK(type == NotificationType::RENDER_VIEW_HOST_CREATED_FOR_TAB); 166 DCHECK(type == NotificationType::RENDER_VIEW_HOST_CREATED_FOR_TAB);
168 loader_->NotifyLoaded(); 167 loader_->NotifyLoaded();
169 registrar_.RemoveAll(); 168 registrar_.RemoveAll();
170 } 169 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698