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

Unified Diff: chrome/browser/ui/toolbar/test_toolbar_actions_bar_helper.h

Issue 1104813005: [Extensions Toolbar] Refactor a few test classes (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 5 years, 8 months 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
Index: chrome/browser/ui/toolbar/test_toolbar_actions_bar_helper.h
diff --git a/chrome/browser/ui/toolbar/test_toolbar_actions_bar_helper.h b/chrome/browser/ui/toolbar/test_toolbar_actions_bar_helper.h
deleted file mode 100644
index 7c9ce5dc8ec89ef8117a39b4dc4b7b246d44988b..0000000000000000000000000000000000000000
--- a/chrome/browser/ui/toolbar/test_toolbar_actions_bar_helper.h
+++ /dev/null
@@ -1,33 +0,0 @@
-// Copyright 2014 The Chromium Authors. All rights reserved.
-// Use of this source code is governed by a BSD-style license that can be
-// found in the LICENSE file.
-
-#ifndef CHROME_BROWSER_UI_TOOLBAR_TEST_TOOLBAR_ACTIONS_BAR_HELPER_H_
-#define CHROME_BROWSER_UI_TOOLBAR_TEST_TOOLBAR_ACTIONS_BAR_HELPER_H_
-
-#include "base/macros.h"
-#include "base/memory/scoped_ptr.h"
-
-class Browser;
-class ToolbarActionsBar;
-
-// A cross-platform container that creates and owns a ToolbarActionsBar and the
-// corresponding view.
-class TestToolbarActionsBarHelper {
- public:
- TestToolbarActionsBarHelper() {}
- virtual ~TestToolbarActionsBarHelper() {}
-
- // Creates and returns a TestToolbarActionsBarHelper. If |main_bar| is
- // non-null, the created actions bar will be in overflow mode.
- static scoped_ptr<TestToolbarActionsBarHelper> Create(
- Browser* browser,
- TestToolbarActionsBarHelper* main_bar);
-
- virtual ToolbarActionsBar* GetToolbarActionsBar() = 0;
-
- private:
- DISALLOW_COPY_AND_ASSIGN(TestToolbarActionsBarHelper);
-};
-
-#endif // CHROME_BROWSER_UI_TOOLBAR_TEST_TOOLBAR_ACTIONS_BAR_HELPER_H_

Powered by Google App Engine
This is Rietveld 408576698