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

Unified Diff: content/common/clipboard_message_enums.h

Issue 206133002: Remove FormatType usage from ClipboardHostMsg_IsFormatAvailable. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Fix Win/Mac typo Created 6 years, 9 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
Index: content/common/clipboard_message_enums.h
diff --git a/content/common/clipboard_message_enums.h b/content/common/clipboard_message_enums.h
new file mode 100644
index 0000000000000000000000000000000000000000..058faa724a0bc3ee31646260f7a30c6739aa2cab
--- /dev/null
+++ b/content/common/clipboard_message_enums.h
@@ -0,0 +1,20 @@
+// Copyright 2014 The Chromium Authors. All rights reserved.
+// Use of this source code is governed by a BSD-style license that can be
+// found in the LICENSE file.
+
+#ifndef CONTENT_COMMON_CLIPBOARD_MESSAGE_ENUMS_H_
+#define CONTENT_COMMON_CLIPBOARD_MESSAGE_ENUMS_H_
+
+namespace content {
+
+enum ClipboardFormat {
jam 2014/03/20 16:07:08 i would just call this file content/common/clipboa
dcheng 2014/03/20 17:52:06 Done.
+ kClipboardFormatPlaintext,
jam 2014/03/20 16:07:08 per the chromium style guide http://www.chromium.o
dcheng 2014/03/20 17:52:06 Done. Didn't realize we differed from the Google s
+ kClipboardFormatHTML,
+ kClipboardFormatSmartPaste,
+ kClipboardFormatBookmark,
+ kClipboardFormatLast = kClipboardFormatBookmark,
+};
+
+} // namespace
+
+#endif // CONTENT_COMMON_CLIPBOARD_MESSAGE_ENUMS_H_

Powered by Google App Engine
This is Rietveld 408576698