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

Side by Side Diff: chrome/browser/password_manager/password_manager_infobar_delegate.h

Issue 1548133002: Switch to standard integer types in chrome/browser/, part 3 of 4. (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 2015 The Chromium Authors. All rights reserved. 1 // Copyright 2015 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_PASSWORD_MANAGER_PASSWORD_MANAGER_INFOBAR_DELEGATE_H_ 5 #ifndef CHROME_BROWSER_PASSWORD_MANAGER_PASSWORD_MANAGER_INFOBAR_DELEGATE_H_
6 #define CHROME_BROWSER_PASSWORD_MANAGER_PASSWORD_MANAGER_INFOBAR_DELEGATE_H_ 6 #define CHROME_BROWSER_PASSWORD_MANAGER_PASSWORD_MANAGER_INFOBAR_DELEGATE_H_
7 7
8 #include "base/macros.h"
8 #include "components/infobars/core/confirm_infobar_delegate.h" 9 #include "components/infobars/core/confirm_infobar_delegate.h"
9 #include "ui/gfx/range/range.h" 10 #include "ui/gfx/range/range.h"
10 11
11 // Base class for some of the password manager infobar delegates, e.g. 12 // Base class for some of the password manager infobar delegates, e.g.
12 // SavePasswordInfoBarDelegate. 13 // SavePasswordInfoBarDelegate.
13 class PasswordManagerInfoBarDelegate : public ConfirmInfoBarDelegate { 14 class PasswordManagerInfoBarDelegate : public ConfirmInfoBarDelegate {
14 public: 15 public:
15 ~PasswordManagerInfoBarDelegate() override; 16 ~PasswordManagerInfoBarDelegate() override;
16 17
17 const gfx::Range& message_link_range() const { return message_link_range_; } 18 const gfx::Range& message_link_range() const { return message_link_range_; }
(...skipping 19 matching lines...) Expand all
37 base::string16 message_; 38 base::string16 message_;
38 39
39 // If set, describes the location of the link to the help center article for 40 // If set, describes the location of the link to the help center article for
40 // Smart Lock. 41 // Smart Lock.
41 gfx::Range message_link_range_; 42 gfx::Range message_link_range_;
42 43
43 DISALLOW_COPY_AND_ASSIGN(PasswordManagerInfoBarDelegate); 44 DISALLOW_COPY_AND_ASSIGN(PasswordManagerInfoBarDelegate);
44 }; 45 };
45 46
46 #endif // CHROME_BROWSER_PASSWORD_MANAGER_PASSWORD_MANAGER_INFOBAR_DELEGATE_H_ 47 #endif // CHROME_BROWSER_PASSWORD_MANAGER_PASSWORD_MANAGER_INFOBAR_DELEGATE_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698