// Copyright (c) 2012 The Chromium Authors. All rights reserved. // Use of this source code is governed by a BSD-style license that can be // found in the LICENSE file. #ifndef UI_GFX_INSETS_F_H_ #define UI_GFX_INSETS_F_H_ #include #include "build/build_config.h" #include "ui/gfx/gfx_export.h" #include "ui/gfx/insets_base.h" namespace gfx { // A floating versin of gfx::Insets. class GFX_EXPORT InsetsF : public InsetsBase { public: InsetsF(); InsetsF(float top, float left, float bottom, float right); ~InsetsF(); // Returns a string representation of the insets. std::string ToString() const; }; #if !defined(COMPILER_MSVC) extern template class InsetsBase; #endif } // namespace gfx #endif // UI_GFX_INSETS_F_H_