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
3// found in the LICENSE file.
4
5#import "chrome/browser/ui/cocoa/cocoa_test_helper.h"
6#import "chrome/browser/ui/cocoa/floating_bar_backing_view.h"
7
8namespace {
9
10class FloatingBarBackingViewTest : public CocoaTest {
11 public:
12  FloatingBarBackingViewTest() {
13    NSRect content_frame = [[test_window() contentView] frame];
14    scoped_nsobject<FloatingBarBackingView> view(
15        [[FloatingBarBackingView alloc] initWithFrame:content_frame]);
16    view_ = view.get();
17    [[test_window() contentView] addSubview:view_];
18  }
19
20  FloatingBarBackingView* view_;  // Weak. Owned by the view hierarchy.
21};
22
23// Tests display, add/remove.
24TEST_VIEW(FloatingBarBackingViewTest, view_);
25
26}  // namespace
27