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

Unified Diff: chrome/browser/ui/cocoa/exclusive_access_bubble_window_controller.h

Issue 2001103003: Remove Mac Cocoa fullscreen prompt. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@fullscreen-mac-always-use-views
Patch Set: Fix compile. Created 4 years, 7 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/exclusive_access_bubble_window_controller.h
diff --git a/chrome/browser/ui/cocoa/exclusive_access_bubble_window_controller.h b/chrome/browser/ui/cocoa/exclusive_access_bubble_window_controller.h
deleted file mode 100644
index 01dc620c3c787ceec331abff2033d7b66e5a782c..0000000000000000000000000000000000000000
--- a/chrome/browser/ui/cocoa/exclusive_access_bubble_window_controller.h
+++ /dev/null
@@ -1,62 +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.
-
-#import <Cocoa/Cocoa.h>
-
-#include "base/mac/scoped_nsobject.h"
-#include "chrome/browser/ui/exclusive_access/exclusive_access_bubble_type.h"
-#include "url/gurl.h"
-
-class ExclusiveAccessManager;
-class Profile;
-@class GTMUILocalizerAndLayoutTweaker;
-@class HyperlinkTextView;
-
-// The ExclusiveAccessBubbleWindowController manages the bubble that informs the
-// user of different exclusive access state like fullscreen mode, mouse lock,
-// etc. Refer to EXCLUSIVE_ACCESS_BUBBLE_TYPE for the different possible
-// conntents of the bubble.
-@interface ExclusiveAccessBubbleWindowController
- : NSWindowController<NSTextViewDelegate, NSAnimationDelegate> {
- @private
- NSWindowController* owner_; // weak
- ExclusiveAccessManager* exclusive_access_manager_; // weak
- Profile* profile_; // weak
- GURL url_;
- ExclusiveAccessBubbleType bubbleType_;
-
- @protected
- IBOutlet NSTextField* exitLabelPlaceholder_;
- IBOutlet NSTextField* messageLabel_;
- IBOutlet NSButton* allowButton_;
- IBOutlet NSButton* denyButton_;
- IBOutlet GTMUILocalizerAndLayoutTweaker* tweaker_;
-
- // Text fields don't work as well with embedded links as text views, but
- // text views cannot conveniently be created in IB. The xib file contains
- // a text field |exitLabelPlaceholder_| that's replaced by this text view
- // |exitLabel_| in -awakeFromNib.
- base::scoped_nsobject<HyperlinkTextView> exitLabel_;
-
- base::scoped_nsobject<NSTimer> hideTimer_;
- base::scoped_nsobject<NSAnimation> hideAnimation_;
-};
-
-// Initializes a new InfoBarController.
-- (id)initWithOwner:(NSWindowController*)owner
- exclusive_access_manager:(ExclusiveAccessManager*)exclusive_access_manager
- profile:(Profile*)profile
- url:(const GURL&)url
- bubbleType:(ExclusiveAccessBubbleType)bubbleType;
-
-- (void)allow:(id)sender;
-- (void)deny:(id)sender;
-
-- (void)showWindow;
-- (void)closeImmediately;
-
-// Positions the exclusive access bubble in the top-center of the window.
-- (void)positionInWindowAtTop:(CGFloat)maxY;
-
-@end

Powered by Google App Engine
This is Rietveld 408576698