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

Unified Diff: chrome/browser/ui/cocoa/tab_contents/overlay_drop_shadow_view_unittest.mm

Issue 12674019: Alternate NTP Mac: Show overlay at fixed position (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 7 years, 9 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/cocoa/tab_contents/overlay_drop_shadow_view_unittest.mm
diff --git a/chrome/browser/ui/cocoa/tab_contents/overlay_drop_shadow_view_unittest.mm b/chrome/browser/ui/cocoa/tab_contents/overlay_drop_shadow_view_unittest.mm
deleted file mode 100644
index 7240bfeb96e984888c810f655d077d53d21843c0..0000000000000000000000000000000000000000
--- a/chrome/browser/ui/cocoa/tab_contents/overlay_drop_shadow_view_unittest.mm
+++ /dev/null
@@ -1,27 +0,0 @@
-// Copyright 2013 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.
-
-#import "chrome/browser/ui/cocoa/tab_contents/overlay_drop_shadow_view.h"
-
-#include "base/memory/scoped_nsobject.h"
-#import "chrome/browser/ui/cocoa/cocoa_test_helper.h"
-
-class OverlayDropShadowViewTest : public CocoaTest {
- public:
- OverlayDropShadowViewTest() {
- NSView* contentView = [test_window() contentView];
- view_.reset(
- [[OverlayDropShadowView alloc] initWithFrame:[contentView bounds]]);
- [contentView addSubview:view_];
- }
-
- protected:
- scoped_nsobject<OverlayDropShadowView> view_;
-};
-
-TEST_VIEW(OverlayDropShadowViewTest, view_);
-
-TEST_F(OverlayDropShadowViewTest, PreferredHeight) {
- EXPECT_LT(0, [OverlayDropShadowView preferredHeight]);
-}

Powered by Google App Engine
This is Rietveld 408576698