OLD | NEW |
1 // Copyright (c) 2006-2008 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2006-2008 The Chromium Authors. All rights reserved. |
2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be |
3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
4 | 4 |
5 #ifndef CHROME_BROWSER_EXTERNAL_PROTOCOL_DIALOG_H__ | 5 #ifndef CHROME_BROWSER_EXTERNAL_PROTOCOL_DIALOG_H__ |
6 #define CHROME_BROWSER_EXTERNAL_PROTOCOL_DIALOG_H__ | 6 #define CHROME_BROWSER_EXTERNAL_PROTOCOL_DIALOG_H__ |
7 | 7 |
8 #include "chrome/views/dialog_delegate.h" | 8 #include "chrome/views/dialog_delegate.h" |
9 #include "googleurl/src/gurl.h" | 9 #include "googleurl/src/gurl.h" |
10 | 10 |
(...skipping 48 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
59 // The associated TabContents. | 59 // The associated TabContents. |
60 TabContents* tab_contents_; | 60 TabContents* tab_contents_; |
61 | 61 |
62 // URL of the external protocol request. | 62 // URL of the external protocol request. |
63 GURL url_; | 63 GURL url_; |
64 | 64 |
65 DISALLOW_EVIL_CONSTRUCTORS(ExternalProtocolDialog); | 65 DISALLOW_EVIL_CONSTRUCTORS(ExternalProtocolDialog); |
66 }; | 66 }; |
67 | 67 |
68 #endif // CHROME_BROWSER_EXTERNAL_PROTOCOL_DIALOG_H__ | 68 #endif // CHROME_BROWSER_EXTERNAL_PROTOCOL_DIALOG_H__ |
69 | |
OLD | NEW |