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

Side by Side Diff: chrome/browser/ui/views/profiles/supervised_user_avatar_label.h

Issue 1545153002: Switch to standard integer types in chrome/browser/ui/views/. (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 2014 The Chromium Authors. All rights reserved. 1 // Copyright 2014 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_UI_VIEWS_PROFILES_SUPERVISED_USER_AVATAR_LABEL_H_ 5 #ifndef CHROME_BROWSER_UI_VIEWS_PROFILES_SUPERVISED_USER_AVATAR_LABEL_H_
6 #define CHROME_BROWSER_UI_VIEWS_PROFILES_SUPERVISED_USER_AVATAR_LABEL_H_ 6 #define CHROME_BROWSER_UI_VIEWS_PROFILES_SUPERVISED_USER_AVATAR_LABEL_H_
7 7
8 #include "base/compiler_specific.h" 8 #include "base/compiler_specific.h"
9 #include "base/macros.h"
9 #include "chrome/browser/supervised_user/supervised_users.h" 10 #include "chrome/browser/supervised_user/supervised_users.h"
10 #include "ui/views/controls/button/label_button.h" 11 #include "ui/views/controls/button/label_button.h"
11 12
12 class BrowserView; 13 class BrowserView;
13 14
14 // SupervisedUserAvatarLabel 15 // SupervisedUserAvatarLabel
15 // 16 //
16 // A label used to display a string indicating that the current profile belongs 17 // A label used to display a string indicating that the current profile belongs
17 // to a supervised user. 18 // to a supervised user.
18 class SupervisedUserAvatarLabel : public views::LabelButton { 19 class SupervisedUserAvatarLabel : public views::LabelButton {
(...skipping 12 matching lines...) Expand all
31 // of the button. 32 // of the button.
32 void SetLabelOnRight(bool label_on_right); 33 void SetLabelOnRight(bool label_on_right);
33 34
34 private: 35 private:
35 BrowserView* browser_view_; 36 BrowserView* browser_view_;
36 37
37 DISALLOW_COPY_AND_ASSIGN(SupervisedUserAvatarLabel); 38 DISALLOW_COPY_AND_ASSIGN(SupervisedUserAvatarLabel);
38 }; 39 };
39 40
40 #endif // CHROME_BROWSER_UI_VIEWS_PROFILES_SUPERVISED_USER_AVATAR_LABEL_H_ 41 #endif // CHROME_BROWSER_UI_VIEWS_PROFILES_SUPERVISED_USER_AVATAR_LABEL_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698