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

Side by Side Diff: chrome/installer/util/html_dialog.h

Issue 1548153002: Switch to standard integer types in chrome/. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 4 years, 12 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 unified diff | Download patch
OLDNEW
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
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_
OLDNEW
« no previous file with comments | « chrome/installer/util/google_update_settings_unittest.cc ('k') | chrome/installer/util/install_util.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698