OLD | NEW |
---|---|
1 // Copyright (c) 2013 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2013 The Chromium Authors. All rights reserved. |
2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be |
3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
4 | 4 |
5 #include "content/renderer/webclipboard_impl.h" | 5 #include "content/renderer/webclipboard_impl.h" |
6 | 6 |
7 #include "base/logging.h" | 7 #include "base/logging.h" |
8 #include "base/pickle.h" | 8 #include "base/pickle.h" |
9 #include "base/strings/string_util.h" | 9 #include "base/strings/string_util.h" |
10 #include "base/strings/utf_string_conversions.h" | 10 #include "base/strings/utf_string_conversions.h" |
(...skipping 185 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
196 } | 196 } |
197 } | 197 } |
198 | 198 |
199 bool WebClipboardImpl::ConvertBufferType(Buffer buffer, | 199 bool WebClipboardImpl::ConvertBufferType(Buffer buffer, |
200 ui::ClipboardType* result) { | 200 ui::ClipboardType* result) { |
201 *result = ui::CLIPBOARD_TYPE_COPY_PASTE; | 201 *result = ui::CLIPBOARD_TYPE_COPY_PASTE; |
202 switch (buffer) { | 202 switch (buffer) { |
203 case BufferStandard: | 203 case BufferStandard: |
204 break; | 204 break; |
205 case BufferSelection: | 205 case BufferSelection: |
206 #if defined(USE_X11) | 206 #if defined(USE_X11) && !defined(OS_CHROMEOS) |
207 #if defined(OS_CHROMEOS) | |
208 // Chrome OS only supports the standard clipboard, | |
209 // but not the X selection clipboad. | |
210 return false; | |
211 #else | |
212 *result = ui::CLIPBOARD_TYPE_SELECTION; | 207 *result = ui::CLIPBOARD_TYPE_SELECTION; |
213 break; | 208 break; |
214 #endif | 209 #else |
210 // Chrome OS and non-X11 unix builds do not support | |
dcheng
2014/04/09 20:45:30
Do you mind adding a TODO with a reference to http
Mostyn Bramley-Moore
2014/04/09 21:00:40
Done.
| |
211 // the X selection clipboad. | |
212 return false; | |
215 #endif | 213 #endif |
216 default: | 214 default: |
217 NOTREACHED(); | 215 NOTREACHED(); |
218 return false; | 216 return false; |
219 } | 217 } |
220 return true; | 218 return true; |
221 } | 219 } |
222 | 220 |
223 } // namespace content | 221 } // namespace content |
OLD | NEW |