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

Unified Diff: ui/aura/client/tooltip_client.h

Issue 15759009: ui/aura: Use base::string16 now that string16 was moved into base namespace. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: fix Created 7 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 | « ui/aura/client/cursor_client.h ('k') | ui/aura/client/tooltip_client.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: ui/aura/client/tooltip_client.h
diff --git a/ui/aura/client/tooltip_client.h b/ui/aura/client/tooltip_client.h
index 43966f68a3a6643a8161f4c9a5c5386977286001..d6d33ceb2fb78e442f5e0a3ba86eae5d42fa8be1 100644
--- a/ui/aura/client/tooltip_client.h
+++ b/ui/aura/client/tooltip_client.h
@@ -11,6 +11,7 @@
namespace aura {
class RootWindow;
class Window;
+
namespace client {
class AURA_EXPORT TooltipClient {
@@ -29,8 +30,9 @@ class AURA_EXPORT TooltipClient {
AURA_EXPORT void SetTooltipClient(RootWindow* root_window,
TooltipClient* client);
AURA_EXPORT TooltipClient* GetTooltipClient(RootWindow* root_window);
-AURA_EXPORT void SetTooltipText(Window* window, string16* tooltip_text);
-AURA_EXPORT const string16 GetTooltipText(Window* window);
+
+AURA_EXPORT void SetTooltipText(Window* window, base::string16* tooltip_text);
+AURA_EXPORT const base::string16 GetTooltipText(Window* window);
} // namespace client
} // namespace aura
« no previous file with comments | « ui/aura/client/cursor_client.h ('k') | ui/aura/client/tooltip_client.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698