|
OLD | NEW |
---|---|
(Empty) | |
1 // Copyright (c) 2009 The Chromium Authors. All rights reserved. | |
2 // Use of this source code is governed by a BSD-style license that can be | |
3 // found in the LICENSE file. | |
4 | |
5 #import <Cocoa/Cocoa.h> | |
6 | |
7 #include "base/time.h" | |
8 #include "googleurl/src/gurl.h" | |
9 | |
10 @interface ExternalProtocolDialogController : NSObject { | |
11 @private | |
12 NSAlert* alert_; | |
13 GURL url_; | |
14 base::Time creation_time_; | |
15 }; | |
16 | |
17 - (id)initWithGURL:(const GURL*)url; | |
18 | |
19 @end | |
OLD | NEW |