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

Side by Side Diff: components/infobars/core/infobar.h

Issue 1548113002: Switch to standard integer types in components/, part 2 of 4. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: gn 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 COMPONENTS_INFOBARS_CORE_INFOBAR_H_ 5 #ifndef COMPONENTS_INFOBARS_CORE_INFOBAR_H_
6 #define COMPONENTS_INFOBARS_CORE_INFOBAR_H_ 6 #define COMPONENTS_INFOBARS_CORE_INFOBAR_H_
7 7
8 #include <utility> 8 #include <utility>
9 9
10 #include "base/macros.h"
10 #include "base/memory/scoped_ptr.h" 11 #include "base/memory/scoped_ptr.h"
11 #include "components/infobars/core/infobar_delegate.h" 12 #include "components/infobars/core/infobar_delegate.h"
12 #include "third_party/skia/include/core/SkColor.h" 13 #include "third_party/skia/include/core/SkColor.h"
13 #include "ui/gfx/animation/animation_delegate.h" 14 #include "ui/gfx/animation/animation_delegate.h"
14 #include "ui/gfx/animation/slide_animation.h" 15 #include "ui/gfx/animation/slide_animation.h"
15 #include "ui/gfx/geometry/size.h" 16 #include "ui/gfx/geometry/size.h"
16 17
17 namespace infobars { 18 namespace infobars {
18 19
19 class InfoBarContainer; 20 class InfoBarContainer;
(...skipping 113 matching lines...) Expand 10 before | Expand all | Expand 10 after
133 int arrow_half_width_; // Includes only fill. 134 int arrow_half_width_; // Includes only fill.
134 int bar_height_; // Includes both fill and bottom separator. 135 int bar_height_; // Includes both fill and bottom separator.
135 int bar_target_height_; // May be left as -1, meaning "use default". 136 int bar_target_height_; // May be left as -1, meaning "use default".
136 137
137 DISALLOW_COPY_AND_ASSIGN(InfoBar); 138 DISALLOW_COPY_AND_ASSIGN(InfoBar);
138 }; 139 };
139 140
140 } // namespace infobars 141 } // namespace infobars
141 142
142 #endif // COMPONENTS_INFOBARS_CORE_INFOBAR_H_ 143 #endif // COMPONENTS_INFOBARS_CORE_INFOBAR_H_
OLDNEW
« no previous file with comments | « components/infobars/core/confirm_infobar_delegate.h ('k') | components/infobars/core/infobar_container.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698