Separate Simple Backend creation from initialization.
[chromium-blink-merge.git] / ui / gfx / insets_f.h
blobd447d94168266cb5361acb8b6d9799f7e54f8f1f
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
3 // found in the LICENSE file.
5 #ifndef UI_GFX_INSETS_F_H_
6 #define UI_GFX_INSETS_F_H_
8 #include <string>
10 #include "build/build_config.h"
11 #include "ui/base/ui_export.h"
12 #include "ui/gfx/insets_base.h"
14 namespace gfx {
16 // A floating versin of gfx::Insets.
17 class UI_EXPORT InsetsF : public InsetsBase<InsetsF, float> {
18 public:
19 InsetsF();
20 InsetsF(float top, float left, float bottom, float right);
21 ~InsetsF();
23 // Returns a string representation of the insets.
24 std::string ToString() const;
27 #if !defined(COMPILER_MSVC)
28 extern template class InsetsBase<InsetsF, float>;
29 #endif
31 } // namespace gfx
33 #endif // UI_GFX_INSETS_F_H_