Chromium Code Reviews

Unified Diff: chrome/browser/gtk/gconf_titlebar_listener.cc

Issue 5711001: Add a new GetInstance() method for remaining files with singleton classes under chrome/browser. (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: chrome/browser/gtk/gconf_titlebar_listener.cc
diff --git a/chrome/browser/gtk/gconf_titlebar_listener.cc b/chrome/browser/gtk/gconf_titlebar_listener.cc
index 237332fdbb4945720cc2e9cb7b618b34f109eed2..0d37b08a6fd914a334c69b4886e801c42f530c95 100644
--- a/chrome/browser/gtk/gconf_titlebar_listener.cc
+++ b/chrome/browser/gtk/gconf_titlebar_listener.cc
@@ -25,6 +25,11 @@ const char* kMetacityGeneral = "/apps/metacity/general";
// Public interface:
+// static
+GConfTitlebarListener* GConfTitlebarListener::GetInstance() {
+ return Singleton<GConfTitlebarListener>::get();
+}
+
void GConfTitlebarListener::SetTitlebarButtons(BrowserTitlebar* titlebar) {
if (client_) {
titlebar->BuildButtons(current_value_);

Powered by Google App Engine