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

Unified Diff: ui/base/x/selection_utils.cc

Issue 2924343002: Move ui::GetAtom to gfx::GetAtom (Closed)
Patch Set: fix CrOs build Created 3 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 | « ui/base/x/selection_requestor_unittest.cc ('k') | ui/base/x/x11_menu_list.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: ui/base/x/selection_utils.cc
diff --git a/ui/base/x/selection_utils.cc b/ui/base/x/selection_utils.cc
index 48eff6254207666b9e23dd0c625b8b6553f951ba..3ab3c84249704508cd651f57dff29b95cd6850dd 100644
--- a/ui/base/x/selection_utils.cc
+++ b/ui/base/x/selection_utils.cc
@@ -15,7 +15,7 @@
#include "base/strings/string_util.h"
#include "base/strings/utf_string_conversions.h"
#include "ui/base/clipboard/clipboard.h"
-#include "ui/base/x/x11_util.h"
+#include "ui/gfx/x/x11_atom_cache.h"
namespace ui {
@@ -27,24 +27,24 @@ const char kUtf8String[] = "UTF8_STRING";
std::vector<::Atom> GetTextAtomsFrom() {
std::vector< ::Atom> atoms;
- atoms.push_back(GetAtom(kUtf8String));
- atoms.push_back(GetAtom(kString));
- atoms.push_back(GetAtom(kText));
- atoms.push_back(GetAtom(kTextPlain));
- atoms.push_back(GetAtom(kTextPlainUtf8));
+ atoms.push_back(gfx::GetAtom(kUtf8String));
+ atoms.push_back(gfx::GetAtom(kString));
+ atoms.push_back(gfx::GetAtom(kText));
+ atoms.push_back(gfx::GetAtom(kTextPlain));
+ atoms.push_back(gfx::GetAtom(kTextPlainUtf8));
return atoms;
}
std::vector<::Atom> GetURLAtomsFrom() {
std::vector< ::Atom> atoms;
- atoms.push_back(GetAtom(Clipboard::kMimeTypeURIList));
- atoms.push_back(GetAtom(Clipboard::kMimeTypeMozillaURL));
+ atoms.push_back(gfx::GetAtom(Clipboard::kMimeTypeURIList));
+ atoms.push_back(gfx::GetAtom(Clipboard::kMimeTypeMozillaURL));
return atoms;
}
std::vector<::Atom> GetURIListAtomsFrom() {
std::vector< ::Atom> atoms;
- atoms.push_back(GetAtom(Clipboard::kMimeTypeURIList));
+ atoms.push_back(gfx::GetAtom(Clipboard::kMimeTypeURIList));
return atoms;
}
@@ -181,10 +181,11 @@ size_t SelectionData::GetSize() const {
}
std::string SelectionData::GetText() const {
- if (type_ == GetAtom(kUtf8String) || type_ == GetAtom(kText) ||
- type_ == GetAtom(kTextPlainUtf8)) {
+ if (type_ == gfx::GetAtom(kUtf8String) || type_ == gfx::GetAtom(kText) ||
+ type_ == gfx::GetAtom(kTextPlainUtf8)) {
return RefCountedMemoryToString(memory_);
- } else if (type_ == GetAtom(kString) || type_ == GetAtom(kTextPlain)) {
+ } else if (type_ == gfx::GetAtom(kString) ||
+ type_ == gfx::GetAtom(kTextPlain)) {
std::string result;
base::ConvertToUtf8AndNormalize(RefCountedMemoryToString(memory_),
base::kCodepageLatin1,
@@ -201,7 +202,7 @@ std::string SelectionData::GetText() const {
base::string16 SelectionData::GetHtml() const {
base::string16 markup;
- if (type_ == GetAtom(Clipboard::kMimeTypeHTML)) {
+ if (type_ == gfx::GetAtom(Clipboard::kMimeTypeHTML)) {
const unsigned char* data = GetData();
size_t size = GetSize();
« no previous file with comments | « ui/base/x/selection_requestor_unittest.cc ('k') | ui/base/x/x11_menu_list.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698