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

Side by Side Diff: chrome/browser/ui/touch/tabs/touch_tab_strip_unittest.cc

Issue 8678015: Touch constants and dead code removal. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Applied Sadrul's comments Created 9 years 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 unified diff | Download patch | Annotate | Revision Log
OLDNEW
(Empty)
1 // Copyright (c) 2011 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file.
4
5 #include "chrome/browser/ui/touch/tabs/touch_tab_strip.h"
6
7 #include "chrome/browser/ui/views/tabs/base_tab_strip_test_fixture.h"
8 #include "chrome/browser/ui/views/tabs/fake_base_tab_strip_controller.h"
9 #include "testing/gtest/include/gtest/gtest.h"
10
11 // BaseTabStrip unit tests using TouchTabStrip.
12 INSTANTIATE_TYPED_TEST_CASE_P(TouchTabStrip,
13 BaseTabStripTestFixture,
14 TouchTabStrip);
15
16 class TouchTabStripTestFixture : public testing::Test {
17 public:
18 TouchTabStripTestFixture()
19 : tab_strip_(new FakeBaseTabStripController()) {
20 }
21
22 protected:
23 TouchTabStrip* tab_strip() { return &tab_strip_; }
24
25 private:
26 TouchTabStrip tab_strip_;
27 };
28
OLDNEW
« no previous file with comments | « chrome/browser/ui/touch/tabs/touch_tab_strip_controller.cc ('k') | chrome/browser/ui/views/frame/browser_view.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698