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

Unified Diff: ceee/ie/broker/executors_manager.cc

Issue 5685007: Rename all methods accessing Singleton<T> as GetInstance(). (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. 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 | « ceee/common/process_utils_win.cc ('k') | chrome/browser/about_flags.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: ceee/ie/broker/executors_manager.cc
diff --git a/ceee/ie/broker/executors_manager.cc b/ceee/ie/broker/executors_manager.cc
index 4e2c32dbd833ae2035b78ce10bc40fbbc99f36e2..2256dbc9bcb9991753847043675842074c948cc5 100644
--- a/ceee/ie/broker/executors_manager.cc
+++ b/ceee/ie/broker/executors_manager.cc
@@ -75,8 +75,7 @@ ExecutorsManager* ExecutorsManager::GetInstance() {
}
bool ExecutorsManager::IsKnownWindow(HWND window) {
- return Singleton<ExecutorsManager, ExecutorsManager::SingletonTraits>::get()->
- IsKnownWindowImpl(window);
+ return GetInstance()->IsKnownWindowImpl(window);
}
bool ExecutorsManager::IsKnownWindowImpl(HWND window) {
@@ -86,8 +85,7 @@ bool ExecutorsManager::IsKnownWindowImpl(HWND window) {
}
HWND ExecutorsManager::FindTabChild(HWND window) {
- return Singleton<ExecutorsManager, ExecutorsManager::SingletonTraits>::get()->
- FindTabChildImpl(window);
+ return GetInstance()->FindTabChildImpl(window);
}
HWND ExecutorsManager::FindTabChildImpl(HWND window) {
« no previous file with comments | « ceee/common/process_utils_win.cc ('k') | chrome/browser/about_flags.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698