summaryrefslogtreecommitdiffstats
path: root/ui/base/range/range.h
diff options
context:
space:
mode:
Diffstat (limited to 'ui/base/range/range.h')
-rw-r--r--ui/base/range/range.h8
1 files changed, 4 insertions, 4 deletions
diff --git a/ui/base/range/range.h b/ui/base/range/range.h
index a86233d..018a11c 100644
--- a/ui/base/range/range.h
+++ b/ui/base/range/range.h
@@ -6,7 +6,7 @@
#define UI_BASE_RANGE_RANGE_H_
#pragma once
-#include <iosfwd>
+#include <string>
#include "base/basictypes.h"
#include "ui/base/ui_export.h"
@@ -103,13 +103,13 @@ class UI_EXPORT Range {
#endif
// GTK+ has no concept of a range.
+ std::string ToString() const;
+
private:
size_t start_;
size_t end_;
};
-UI_EXPORT std::ostream& operator<<(std::ostream& out, const ui::Range& range);
-
-} // namespace gfx
+} // namespace ui
#endif // UI_BASE_RANGE_RANGE_H_