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

Side by Side Diff: ui/gfx/geometry/insets_f.h

Issue 109433013: Move geometric types to a separate, more lightweight target. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: . Created 7 years 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 | Annotate | Revision Log
OLDNEW
1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2012 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 UI_GFX_INSETS_F_H_ 5 #ifndef UI_GFX_GEOMETRY_INSETS_F_H_
6 #define UI_GFX_INSETS_F_H_ 6 #define UI_GFX_GEOMETRY_INSETS_F_H_
7 7
8 #include <string> 8 #include <string>
9 9
10 #include "build/build_config.h" 10 #include "build/build_config.h"
11 #include "ui/gfx/geometry/insets_base.h"
11 #include "ui/gfx/gfx_export.h" 12 #include "ui/gfx/gfx_export.h"
12 #include "ui/gfx/insets_base.h"
13 13
14 namespace gfx { 14 namespace gfx {
15 15
16 // A floating versin of gfx::Insets. 16 // A floating versin of gfx::Insets.
17 class GFX_EXPORT InsetsF : public InsetsBase<InsetsF, float> { 17 class GFX_EXPORT InsetsF : public InsetsBase<InsetsF, float> {
18 public: 18 public:
19 InsetsF(); 19 InsetsF();
20 InsetsF(float top, float left, float bottom, float right); 20 InsetsF(float top, float left, float bottom, float right);
21 ~InsetsF(); 21 ~InsetsF();
22 22
23 // Returns a string representation of the insets. 23 // Returns a string representation of the insets.
24 std::string ToString() const; 24 std::string ToString() const;
25 }; 25 };
26 26
27 #if !defined(COMPILER_MSVC) 27 #if !defined(COMPILER_MSVC)
28 extern template class InsetsBase<InsetsF, float>; 28 extern template class InsetsBase<InsetsF, float>;
29 #endif 29 #endif
30 30
31 } // namespace gfx 31 } // namespace gfx
32 32
33 #endif // UI_GFX_INSETS_F_H_ 33 #endif // UI_GFX_GEOMETRY_INSETS_F_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698