| 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_EXTENSION_SHELF_GTK_H_ | 5 #ifndef CHROME_BROWSER_GTK_EXTENSION_SHELF_GTK_H_ |
| 6 #define CHROME_BROWSER_GTK_EXTENSION_SHELF_GTK_H_ | 6 #define CHROME_BROWSER_GTK_EXTENSION_SHELF_GTK_H_ |
| 7 | 7 |
| 8 #include <gtk/gtk.h> | 8 #include <gtk/gtk.h> |
| 9 | 9 |
| 10 #include <set> | 10 #include <set> |
| (...skipping 82 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 93 ExtensionShelfModel* model_; | 93 ExtensionShelfModel* model_; |
| 94 | 94 |
| 95 // Set of toolstrip views which are really on the shelf. | 95 // Set of toolstrip views which are really on the shelf. |
| 96 std::set<Toolstrip*> toolstrips_; | 96 std::set<Toolstrip*> toolstrips_; |
| 97 | 97 |
| 98 NotificationRegistrar registrar_; | 98 NotificationRegistrar registrar_; |
| 99 | 99 |
| 100 DISALLOW_COPY_AND_ASSIGN(ExtensionShelfGtk); | 100 DISALLOW_COPY_AND_ASSIGN(ExtensionShelfGtk); |
| 101 }; | 101 }; |
| 102 | 102 |
| 103 #endif // CHROME_BROWSER_EXTENSION_SHELF_GTK_H_ | 103 #endif // CHROME_BROWSER_GTK_EXTENSION_SHELF_GTK_H_ |
| OLD | NEW |