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

Unified Diff: chrome/browser/ui/cocoa/notifications/balloon_view_host_mac.mm

Issue 231213003: notification balloons: Remove views and cocoa implementations of BalloonCollection. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: . Created 6 years, 8 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/notifications/balloon_view_host_mac.mm
diff --git a/chrome/browser/ui/cocoa/notifications/balloon_view_host_mac.mm b/chrome/browser/ui/cocoa/notifications/balloon_view_host_mac.mm
deleted file mode 100644
index 8868d0e837e1ae6f3b5540da1ef11cf240f8b113..0000000000000000000000000000000000000000
--- a/chrome/browser/ui/cocoa/notifications/balloon_view_host_mac.mm
+++ /dev/null
@@ -1,46 +0,0 @@
-// Copyright (c) 2012 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.
-
-#include "chrome/browser/ui/cocoa/notifications/balloon_view_host_mac.h"
-
-#import <Cocoa/Cocoa.h>
-
-#include "content/public/browser/render_view_host.h"
-#include "content/public/browser/web_contents.h"
-#include "content/public/browser/web_contents_view.h"
-
-BalloonViewHost::BalloonViewHost(Balloon* balloon)
- : BalloonHost(balloon) {
-}
-
-BalloonViewHost::~BalloonViewHost() {
- Shutdown();
-}
-
-void BalloonViewHost::UpdateActualSize(const gfx::Size& new_size) {
- // Update the size of the web contents view.
- // The view's new top left corner should be identical to the view's old top
- // left corner.
- NSView* web_contents_view = web_contents_->GetView()->GetNativeView();
- NSRect old_wcv_frame = [web_contents_view frame];
- CGFloat new_x = old_wcv_frame.origin.x;
- CGFloat new_y =
- old_wcv_frame.origin.y + (old_wcv_frame.size.height - new_size.height());
- NSRect new_wcv_frame =
- NSMakeRect(new_x, new_y, new_size.width(), new_size.height());
- [web_contents_view setFrame:new_wcv_frame];
-
- // Update the size of the balloon view.
- NSView* view = native_view();
- NSRect frame = [view frame];
- frame.size.width = new_size.width();
- frame.size.height = new_size.height();
-
- [view setFrame:frame];
- [view setNeedsDisplay:YES];
-}
-
-gfx::NativeView BalloonViewHost::native_view() const {
- return web_contents_->GetView()->GetContentNativeView();
-}
« no previous file with comments | « chrome/browser/ui/cocoa/notifications/balloon_view_host_mac.h ('k') | chrome/browser/ui/views/notifications/OWNERS » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698