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

Unified Diff: ui/base/range/range.h

Issue 10332205: Fix logging of string16s from gfx namespace on Windows. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src/
Patch Set: Created 8 years, 7 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 | « no previous file | ui/base/range/range.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: ui/base/range/range.h
===================================================================
--- ui/base/range/range.h (revision 137657)
+++ ui/base/range/range.h (working copy)
@@ -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 @@
#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 ui
-} // namespace gfx
-
#endif // UI_BASE_RANGE_RANGE_H_
« no previous file with comments | « no previous file | ui/base/range/range.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698