| OLD | NEW |
| 1 // Copyright (c) 2009 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2009 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 #ifndef CHROME_BROWSER_GTK_VIEW_ID_UTIL_H_ | 5 #ifndef CHROME_BROWSER_GTK_VIEW_ID_UTIL_H_ |
| 6 #define CHROME_BROWSER_GTK_VIEW_ID_UTIL_H_ | 6 #define CHROME_BROWSER_GTK_VIEW_ID_UTIL_H_ |
| 7 | 7 |
| 8 #include "chrome/browser/view_ids.h" | 8 #include "chrome/browser/view_ids.h" |
| 9 | 9 |
| 10 typedef struct _GtkWidget GtkWidget; | 10 typedef struct _GtkWidget GtkWidget; |
| 11 | 11 |
| 12 class ViewIDUtil { | 12 class ViewIDUtil { |
| 13 public: | 13 public: |
| 14 // Use this delegate to override default view id searches. | 14 // Use this delegate to override default view id searches. |
| 15 class Delegate { | 15 class Delegate { |
| 16 public: | 16 public: |
| 17 virtual GtkWidget* GetWidgetForViewID(ViewID id) = 0; | 17 virtual GtkWidget* GetWidgetForViewID(ViewID id) = 0; |
| 18 protected: | |
| 19 ~Delegate() {} | |
| 20 }; | 18 }; |
| 21 | 19 |
| 22 static void SetID(GtkWidget* widget, ViewID id); | 20 static void SetID(GtkWidget* widget, ViewID id); |
| 23 | 21 |
| 24 static GtkWidget* GetWidget(GtkWidget* root, ViewID id); | 22 static GtkWidget* GetWidget(GtkWidget* root, ViewID id); |
| 25 | 23 |
| 26 static void SetDelegateForWidget(GtkWidget* widget, Delegate* delegate); | 24 static void SetDelegateForWidget(GtkWidget* widget, Delegate* delegate); |
| 27 }; | 25 }; |
| 28 | 26 |
| 29 #endif // CHROME_BROWSER_GTK_VIEW_ID_UTIL_H_ | 27 #endif // CHROME_BROWSER_GTK_VIEW_ID_UTIL_H_ |
| OLD | NEW |