| OLD | NEW |
| 1 // Copyright (c) 2010 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2010 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_EXTENSIONS_BROWSER_ACTION_TEST_UTIL_H_ | 5 #ifndef CHROME_BROWSER_EXTENSIONS_BROWSER_ACTION_TEST_UTIL_H_ |
| 6 #define CHROME_BROWSER_EXTENSIONS_BROWSER_ACTION_TEST_UTIL_H_ | 6 #define CHROME_BROWSER_EXTENSIONS_BROWSER_ACTION_TEST_UTIL_H_ |
| 7 | 7 |
| 8 #include <string> | 8 #include <string> |
| 9 | 9 |
| 10 #include "base/memory/scoped_ptr.h" | 10 #include "base/memory/scoped_ptr.h" |
| 11 #include "ui/gfx/native_widget_types.h" | 11 #include "ui/gfx/native_widget_types.h" |
| 12 | 12 |
| 13 class Browser; | 13 class Browser; |
| 14 class TestToolbarActionsBarHelper; |
| 14 class ToolbarActionsBar; | 15 class ToolbarActionsBar; |
| 15 class ToolbarActionsBarDelegate; | 16 class ToolbarActionsBarDelegate; |
| 16 | 17 |
| 17 namespace gfx { | 18 namespace gfx { |
| 18 class Image; | 19 class Image; |
| 19 class Rect; | 20 class Rect; |
| 20 class Size; | 21 class Size; |
| 21 } // namespace gfx | 22 } // namespace gfx |
| 22 | 23 |
| 23 // A class that creates and owns the platform-specific views for the browser | 24 // A class that creates and owns the platform-specific views for the browser |
| (...skipping 83 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 107 Browser* browser_; // weak | 108 Browser* browser_; // weak |
| 108 | 109 |
| 109 // Our test helper, which constructs and owns the views if we don't have a | 110 // Our test helper, which constructs and owns the views if we don't have a |
| 110 // real browser window, or if this is an overflow version. | 111 // real browser window, or if this is an overflow version. |
| 111 scoped_ptr<TestToolbarActionsBarHelper> test_helper_; | 112 scoped_ptr<TestToolbarActionsBarHelper> test_helper_; |
| 112 | 113 |
| 113 DISALLOW_COPY_AND_ASSIGN(BrowserActionTestUtil); | 114 DISALLOW_COPY_AND_ASSIGN(BrowserActionTestUtil); |
| 114 }; | 115 }; |
| 115 | 116 |
| 116 #endif // CHROME_BROWSER_EXTENSIONS_BROWSER_ACTION_TEST_UTIL_H_ | 117 #endif // CHROME_BROWSER_EXTENSIONS_BROWSER_ACTION_TEST_UTIL_H_ |
| OLD | NEW |