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

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

Issue 687293003: Clipboard buildfix: USE_AURA without TOOLKIT_VIEWS failed to compile. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: condition --> !OS_ANDROID Created 6 years, 2 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 | « no previous file | ui/base/clipboard/clipboard_mac.mm » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: ui/base/clipboard/clipboard.h
diff --git a/ui/base/clipboard/clipboard.h b/ui/base/clipboard/clipboard.h
index 9cfa2638cbf06dfa55982aaa87e0643505807255..be8e73005667d0b1fb865eb49e792c0799dbc964 100644
--- a/ui/base/clipboard/clipboard.h
+++ b/ui/base/clipboard/clipboard.h
@@ -71,7 +71,7 @@ class UI_BASE_EXPORT Clipboard : NON_EXPORTED_BASE(public base::ThreadChecker) {
std::string Serialize() const;
static FormatType Deserialize(const std::string& serialization);
-#if defined(TOOLKIT_VIEWS)
+#if !defined(OS_ANDROID)
// FormatType can be used in a set on some platforms.
bool operator<(const FormatType& other) const;
#endif
« no previous file with comments | « no previous file | ui/base/clipboard/clipboard_mac.mm » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698