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

Unified Diff: ui/base/clipboard/custom_data_helper.h

Issue 100303003: Move more uses of string16 to specify base:: (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 7 years 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/base/clipboard/clipboard_gtk.cc ('k') | ui/base/clipboard/custom_data_helper.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: ui/base/clipboard/custom_data_helper.h
diff --git a/ui/base/clipboard/custom_data_helper.h b/ui/base/clipboard/custom_data_helper.h
index 57e1772146d97b3b48562126c85062c53a3cd95f..55e7dce382984d28971b1480d58b341859625a42 100644
--- a/ui/base/clipboard/custom_data_helper.h
+++ b/ui/base/clipboard/custom_data_helper.h
@@ -36,17 +36,19 @@ UI_EXPORT extern const char kMimeTypeWebCustomData[];
UI_EXPORT void ReadCustomDataTypes(const void* data,
size_t data_length,
- std::vector<string16>* types);
+ std::vector<base::string16>* types);
UI_EXPORT void ReadCustomDataForType(const void* data,
size_t data_length,
- const string16& type,
- string16* result);
-UI_EXPORT void ReadCustomDataIntoMap(const void* data,
- size_t data_length,
- std::map<string16, string16>* result);
-
-UI_EXPORT void WriteCustomDataToPickle(const std::map<string16, string16>& data,
- Pickle* pickle);
+ const base::string16& type,
+ base::string16* result);
+UI_EXPORT void ReadCustomDataIntoMap(
+ const void* data,
+ size_t data_length,
+ std::map<base::string16, base::string16>* result);
+
+UI_EXPORT void WriteCustomDataToPickle(
+ const std::map<base::string16, base::string16>& data,
+ Pickle* pickle);
} // namespace ui
« no previous file with comments | « ui/base/clipboard/clipboard_gtk.cc ('k') | ui/base/clipboard/custom_data_helper.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698