| OLD | NEW |
| 1 // Copyright (c) 2011 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2011 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_INSTALLER_UTIL_HTML_DIALOG_H_ | 5 #ifndef CHROME_INSTALLER_UTIL_HTML_DIALOG_H_ |
| 6 #define CHROME_INSTALLER_UTIL_HTML_DIALOG_H_ | 6 #define CHROME_INSTALLER_UTIL_HTML_DIALOG_H_ |
| 7 | 7 |
| 8 #include "base/basictypes.h" | 8 #include "base/macros.h" |
| 9 #include "base/strings/string16.h" | 9 #include "base/strings/string16.h" |
| 10 | 10 |
| 11 // This is the interface for creating HTML-based Dialogs *before* Chrome has | 11 // This is the interface for creating HTML-based Dialogs *before* Chrome has |
| 12 // been installed or when there is a suspicion chrome is not working. In | 12 // been installed or when there is a suspicion chrome is not working. In |
| 13 // other words, the dialogs use another native html rendering engine. In the | 13 // other words, the dialogs use another native html rendering engine. In the |
| 14 // case of Windows it is the the Internet Explorer control. | 14 // case of Windows it is the the Internet Explorer control. |
| 15 | 15 |
| 16 namespace installer { | 16 namespace installer { |
| 17 | 17 |
| 18 // Interface for implementing a native HTML dialog. | 18 // Interface for implementing a native HTML dialog. |
| (...skipping 72 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 91 void OnBeforeDisplay(void* window) override; | 91 void OnBeforeDisplay(void* window) override; |
| 92 }; | 92 }; |
| 93 | 93 |
| 94 HTMLDialog* dialog_; | 94 HTMLDialog* dialog_; |
| 95 DISALLOW_COPY_AND_ASSIGN(EulaHTMLDialog); | 95 DISALLOW_COPY_AND_ASSIGN(EulaHTMLDialog); |
| 96 }; | 96 }; |
| 97 | 97 |
| 98 } // namespace installer | 98 } // namespace installer |
| 99 | 99 |
| 100 #endif // CHROME_INSTALLER_UTIL_HTML_DIALOG_H_ | 100 #endif // CHROME_INSTALLER_UTIL_HTML_DIALOG_H_ |
| OLD | NEW |