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

Unified Diff: ui/gfx/range/range_f.h

Issue 1922373002: Make ui/gfx/range a component (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Fixed windows issues + addressed nit Created 4 years, 8 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « ui/gfx/range/range.h ('k') | ui/views/examples/examples.gyp » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: ui/gfx/range/range_f.h
diff --git a/ui/gfx/range/range_f.h b/ui/gfx/range/range_f.h
index 0e4185a52d2dc9503ece30a57de7b0385ae11c81..d01c9a4515a34eecffa24a8031707851f407bc93 100644
--- a/ui/gfx/range/range_f.h
+++ b/ui/gfx/range/range_f.h
@@ -8,7 +8,7 @@
#include <ostream>
#include <string>
-#include "ui/gfx/gfx_export.h"
+#include "ui/gfx/range/gfx_range_export.h"
#include "ui/gfx/range/range.h"
namespace gfx {
@@ -16,7 +16,7 @@ namespace gfx {
// A float version of Range. RangeF is made of a start and end position; when
// they are the same, the range is empty. Note that |start_| can be greater
// than |end_| to respect the directionality of the range.
-class GFX_EXPORT RangeF {
+class GFX_RANGE_EXPORT RangeF {
public:
// Creates an empty range {0,0}.
RangeF();
@@ -81,7 +81,8 @@ class GFX_EXPORT RangeF {
float end_;
};
-GFX_EXPORT std::ostream& operator<<(std::ostream& os, const RangeF& range);
+GFX_RANGE_EXPORT std::ostream& operator<<(std::ostream& os,
+ const RangeF& range);
} // namespace gfx
« no previous file with comments | « ui/gfx/range/range.h ('k') | ui/views/examples/examples.gyp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698