| Index: ui/base/x/selection_utils.cc
|
| diff --git a/ui/base/x/selection_utils.cc b/ui/base/x/selection_utils.cc
|
| index d7acd52c029070c1437174eba76956eead9e3a9f..2d57e496563e4877aaba25c6c8a022af6cec1121 100644
|
| --- a/ui/base/x/selection_utils.cc
|
| +++ b/ui/base/x/selection_utils.cc
|
| @@ -20,7 +20,6 @@
|
|
|
| namespace ui {
|
|
|
| -const char kMimeTypeMozillaURL[] = "text/x-moz-url";
|
| const char kString[] = "STRING";
|
| const char kText[] = "TEXT";
|
| const char kTextPlain[] = "text/plain";
|
| @@ -50,7 +49,7 @@ std::vector< ::Atom> GetTextAtomsFrom(const X11AtomCache* atom_cache) {
|
| std::vector< ::Atom> GetURLAtomsFrom(const X11AtomCache* atom_cache) {
|
| std::vector< ::Atom> atoms;
|
| atoms.push_back(atom_cache->GetAtom(Clipboard::kMimeTypeURIList));
|
| - atoms.push_back(atom_cache->GetAtom(kMimeTypeMozillaURL));
|
| + atoms.push_back(atom_cache->GetAtom(Clipboard::kMimeTypeMozillaURL));
|
| return atoms;
|
| }
|
|
|
|
|