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

Unified Diff: chrome/browser/ui/cocoa/constrained_window/cw_alert.h

Issue 10870094: Constrained window sheet controller (test patch) (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: rename Created 8 years, 4 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/constrained_window/cw_alert.h
diff --git a/chrome/browser/ui/cocoa/constrained_window/cw_alert.h b/chrome/browser/ui/cocoa/constrained_window/cw_alert.h
deleted file mode 100644
index 752394b0584abc161fbc3bca8cc5bb7bbf2afe5b..0000000000000000000000000000000000000000
--- a/chrome/browser/ui/cocoa/constrained_window/cw_alert.h
+++ /dev/null
@@ -1,32 +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/memory/scoped_nsobject.h"
-
-@interface CWAlert : NSObject {
- scoped_nsobject<NSTextField> informativeTextField_;
- scoped_nsobject<NSTextField> messageTextField_;
- scoped_nsobject<NSView> accessoryView_;
- scoped_nsobject<NSMutableArray> buttons_;
- scoped_nsobject<NSButton> closeButton_;
- scoped_nsobject<NSWindow> window_;
-}
-
-@property(nonatomic, retain) NSString* informativeText;
-@property(nonatomic, retain) NSString* messageText;
-@property(nonatomic, retain) NSView* accessoryView;
-@property(nonatomic, readonly) NSArray* buttons;
-@property(nonatomic, readonly) NSButton* closeButton;
-@property(nonatomic, readonly) NSWindow* window;
-
-- (id)init;
-
-- (void)addButtonWithTitle:(NSString*)title
- keyEquivalent:(NSString*)keyEquivalent;
-
-- (void)layout;
-
-@end

Powered by Google App Engine
This is Rietveld 408576698