| OLD | NEW |
| 1 // Copyright (c) 2009 The Chromium Authors. All rights reserved. | 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 | 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_VIEWS_EXTERNAL_PROTOCOL_DIALOG_H_ |
| 6 #define CHROME_BROWSER_EXTERNAL_PROTOCOL_DIALOG_H_ | 6 #define CHROME_BROWSER_VIEWS_EXTERNAL_PROTOCOL_DIALOG_H_ |
| 7 | 7 |
| 8 #include "base/time.h" | 8 #include "base/time.h" |
| 9 #include "googleurl/src/gurl.h" | 9 #include "googleurl/src/gurl.h" |
| 10 #include "views/window/dialog_delegate.h" | 10 #include "views/window/dialog_delegate.h" |
| 11 | 11 |
| 12 class MessageBoxView; | 12 class MessageBoxView; |
| 13 class TabContents; | 13 class TabContents; |
| 14 | 14 |
| 15 class ExternalProtocolDialog : public views::DialogDelegate { | 15 class ExternalProtocolDialog : public views::DialogDelegate { |
| 16 public: | 16 public: |
| (...skipping 31 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 48 | 48 |
| 49 // URL of the external protocol request. | 49 // URL of the external protocol request. |
| 50 GURL url_; | 50 GURL url_; |
| 51 | 51 |
| 52 // The time at which this dialog was created. | 52 // The time at which this dialog was created. |
| 53 base::Time creation_time_; | 53 base::Time creation_time_; |
| 54 | 54 |
| 55 DISALLOW_COPY_AND_ASSIGN(ExternalProtocolDialog); | 55 DISALLOW_COPY_AND_ASSIGN(ExternalProtocolDialog); |
| 56 }; | 56 }; |
| 57 | 57 |
| 58 #endif // CHROME_BROWSER_EXTERNAL_PROTOCOL_DIALOG_H_ | 58 #endif // CHROME_BROWSER_VIEWS_EXTERNAL_PROTOCOL_DIALOG_H_ |
| OLD | NEW |