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_ |