| Index: content/browser/time_zone_monitor.cc
|
| diff --git a/content/browser/time_zone_monitor.cc b/content/browser/time_zone_monitor.cc
|
| index 0c17f8e52062f5841cd2b893a56d807ffc108fd7..f61280b23a193ec0da98f0c46bc687b77abd6461 100644
|
| --- a/content/browser/time_zone_monitor.cc
|
| +++ b/content/browser/time_zone_monitor.cc
|
| @@ -11,15 +11,15 @@
|
| namespace content {
|
|
|
| TimeZoneMonitor::TimeZoneMonitor() {
|
| - DCHECK(BrowserThread::CurrentlyOn(BrowserThread::UI));
|
| + DCHECK_CURRENTLY_ON(BrowserThread::UI);
|
| }
|
|
|
| TimeZoneMonitor::~TimeZoneMonitor() {
|
| - DCHECK(BrowserThread::CurrentlyOn(BrowserThread::UI));
|
| + DCHECK_CURRENTLY_ON(BrowserThread::UI);
|
| }
|
|
|
| void TimeZoneMonitor::NotifyRenderers() {
|
| - DCHECK(BrowserThread::CurrentlyOn(BrowserThread::UI));
|
| + DCHECK_CURRENTLY_ON(BrowserThread::UI);
|
| for (RenderProcessHost::iterator iterator =
|
| RenderProcessHost::AllHostsIterator();
|
| !iterator.IsAtEnd();
|
|
|