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

Unified Diff: content/test/mock_webclipboard_impl.cc

Issue 1176583003: Move EqualsASCII to the base namespace. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@string_util2
Patch Set: Created 5 years, 6 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 | « content/renderer/render_frame_impl.cc ('k') | net/base/net_util_icu.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: content/test/mock_webclipboard_impl.cc
diff --git a/content/test/mock_webclipboard_impl.cc b/content/test/mock_webclipboard_impl.cc
index 8a6e7748e5bbfea432fb4a39b66d590d5b0c728d..eb9677b88daeb053a1afad7dfb9fe4208bd3685f 100644
--- a/content/test/mock_webclipboard_impl.cc
+++ b/content/test/mock_webclipboard_impl.cc
@@ -176,11 +176,11 @@ void MockWebClipboardImpl::writeDataObject(const WebDragData& data) {
switch (item.storageType) {
case WebDragData::Item::StorageTypeString: {
++m_sequenceNumber;
- if (EqualsASCII(item.stringType, ui::Clipboard::kMimeTypeText)) {
+ if (base::EqualsASCII(item.stringType, ui::Clipboard::kMimeTypeText)) {
m_plainText = item.stringData;
continue;
}
- if (EqualsASCII(item.stringType, ui::Clipboard::kMimeTypeHTML)) {
+ if (base::EqualsASCII(item.stringType, ui::Clipboard::kMimeTypeHTML)) {
m_htmlText = item.stringData;
continue;
}
« no previous file with comments | « content/renderer/render_frame_impl.cc ('k') | net/base/net_util_icu.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698