diff options
author | oshima@chromium.org <oshima@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2010-02-26 19:08:54 +0000 |
---|---|---|
committer | oshima@chromium.org <oshima@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2010-02-26 19:08:54 +0000 |
commit | beda4150e41daa8f6aa91e788fccce2a3e9aca00 (patch) | |
tree | 426fc79885a4d06befa0d4220a13031d75205ce8 | |
parent | 9e9fff083f6742c63ba154f11d458866e99c6ed9 (diff) | |
download | chromium_src-beda4150e41daa8f6aa91e788fccce2a3e9aca00.zip chromium_src-beda4150e41daa8f6aa91e788fccce2a3e9aca00.tar.gz chromium_src-beda4150e41daa8f6aa91e788fccce2a3e9aca00.tar.bz2 |
fix mac build breakage
TBR=johnnyg@chromium.org
BUG=none
TEST=mac debug build should cycle green
Review URL: http://codereview.chromium.org/660192
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@40140 0039d316-1c4b-4281-b951-d872f2087c98
-rw-r--r-- | chrome/browser/cocoa/notifications/balloon_controller_unittest.mm | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/chrome/browser/cocoa/notifications/balloon_controller_unittest.mm b/chrome/browser/cocoa/notifications/balloon_controller_unittest.mm index 4893982..bd5d1cd 100644 --- a/chrome/browser/cocoa/notifications/balloon_controller_unittest.mm +++ b/chrome/browser/cocoa/notifications/balloon_controller_unittest.mm @@ -55,7 +55,8 @@ class BalloonControllerTest : public RenderViewHostTestHarness { TEST_F(BalloonControllerTest, ShowAndCloseTest) { Notification n(GURL("http://www.google.com"), GURL("http://www.google.com"), - L"http://www.google.com", new NotificationObjectProxy(-1, -1, -1, false)); + L"http://www.google.com", new NotificationObjectProxy(-1, -1, -1, false), + false); scoped_ptr<Balloon> balloon( new Balloon(n, profile_.get(), collection_.get())); @@ -73,7 +74,8 @@ TEST_F(BalloonControllerTest, ShowAndCloseTest) { TEST_F(BalloonControllerTest, SizesTest) { Notification n(GURL("http://www.google.com"), GURL("http://www.google.com"), - L"http://www.google.com", new NotificationObjectProxy(-1, -1, -1, false)); + L"http://www.google.com", new NotificationObjectProxy(-1, -1, -1, false), + false); scoped_ptr<Balloon> balloon( new Balloon(n, profile_.get(), collection_.get())); balloon->set_content_size(gfx::Size(100, 100)); |