OLD | NEW |
1 // Copyright 2013 The Chromium Authors. All rights reserved. | 1 // Copyright 2013 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 #include "chrome/browser/ui/views/toolbar/toolbar_view.h" | 5 #include "chrome/browser/ui/views/toolbar/toolbar_view.h" |
6 | 6 |
7 #include "base/strings/utf_string_conversions.h" | 7 #include "base/strings/utf_string_conversions.h" |
8 #include "chrome/app/chrome_command_ids.h" | 8 #include "chrome/app/chrome_command_ids.h" |
9 #include "chrome/browser/bookmarks/bookmark_model_factory.h" | 9 #include "chrome/browser/bookmarks/bookmark_model_factory.h" |
10 #include "chrome/browser/ui/browser.h" | 10 #include "chrome/browser/ui/browser.h" |
11 #include "chrome/browser/ui/browser_command_controller.h" | 11 #include "chrome/browser/ui/browser_command_controller.h" |
12 #include "chrome/browser/ui/browser_window.h" | 12 #include "chrome/browser/ui/browser_window.h" |
13 #include "chrome/browser/ui/view_ids.h" | 13 #include "chrome/browser/ui/view_ids.h" |
14 #include "chrome/browser/ui/views/frame/browser_view.h" | 14 #include "chrome/browser/ui/views/frame/browser_view.h" |
15 #include "chrome/test/base/in_process_browser_test.h" | 15 #include "chrome/test/base/in_process_browser_test.h" |
16 #include "components/bookmarks/core/browser/bookmark_model.h" | 16 #include "components/bookmarks/browser/bookmark_model.h" |
17 #include "components/bookmarks/core/browser/bookmark_utils.h" | 17 #include "components/bookmarks/browser/bookmark_utils.h" |
18 #include "ui/views/focus/focus_manager.h" | 18 #include "ui/views/focus/focus_manager.h" |
19 #include "ui/views/view.h" | 19 #include "ui/views/view.h" |
20 #include "ui/views/widget/widget.h" | 20 #include "ui/views/widget/widget.h" |
21 | 21 |
22 namespace { | 22 namespace { |
23 | 23 |
24 class ToolbarViewTest : public InProcessBrowserTest { | 24 class ToolbarViewTest : public InProcessBrowserTest { |
25 public: | 25 public: |
26 ToolbarViewTest() {} | 26 ToolbarViewTest() {} |
27 | 27 |
(...skipping 84 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
112 model, GURL("http://foo.com"), base::ASCIIToUTF16("Foo")); | 112 model, GURL("http://foo.com"), base::ASCIIToUTF16("Foo")); |
113 | 113 |
114 // We want to specifically test the case where the bookmark bar is | 114 // We want to specifically test the case where the bookmark bar is |
115 // already showing when a window opens, so create a second browser | 115 // already showing when a window opens, so create a second browser |
116 // window with the same profile. | 116 // window with the same profile. |
117 Browser* second_browser = CreateBrowser(browser()->profile()); | 117 Browser* second_browser = CreateBrowser(browser()->profile()); |
118 RunToolbarCycleFocusTest(second_browser); | 118 RunToolbarCycleFocusTest(second_browser); |
119 } | 119 } |
120 | 120 |
121 } // namespace | 121 } // namespace |
OLD | NEW |