Chromium Code Reviews

Unified Diff: ceee/ie/plugin/bho/web_progress_notifier.cc

Issue 5581008: Add a new GetInstance() method for singleton classes, take 2. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: . Created 10 years ago
Use n/p to move between diff chunks; N/P to move between comments.
Jump to:
View side-by-side diff with in-line comments
Index: ceee/ie/plugin/bho/web_progress_notifier.cc
diff --git a/ceee/ie/plugin/bho/web_progress_notifier.cc b/ceee/ie/plugin/bho/web_progress_notifier.cc
index 567c543ee7a32129d12e57fdb264303e6dcdcc66..0984f4d1f92f09cba66ae0e166abb2b0fc82242c 100644
--- a/ceee/ie/plugin/bho/web_progress_notifier.cc
+++ b/ceee/ie/plugin/bho/web_progress_notifier.cc
@@ -339,7 +339,7 @@ WebNavigationEventsFunnel* WebProgressNotifier::webnavigation_events_funnel() {
WebRequestNotifier* WebProgressNotifier::webrequest_notifier() {
if (cached_webrequest_notifier_ == NULL) {
- cached_webrequest_notifier_ = ProductionWebRequestNotifier::get();
+ cached_webrequest_notifier_ = ProductionWebRequestNotifier::GetInstance();
}
return cached_webrequest_notifier_;
}

Powered by Google App Engine