OLD | NEW |
---|---|
(Empty) | |
1 // Copyright 2014 The Chromium Authors. All rights reserved. | |
2 // Use of this source code is governed by a BSD-style license that can be | |
3 // found in the LICENSE file. | |
4 | |
5 #ifndef CONTENT_COMMON_CLIPBOARD_MESSAGE_ENUMS_H_ | |
6 #define CONTENT_COMMON_CLIPBOARD_MESSAGE_ENUMS_H_ | |
7 | |
8 namespace content { | |
9 | |
10 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.
| |
11 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
| |
12 kClipboardFormatHTML, | |
13 kClipboardFormatSmartPaste, | |
14 kClipboardFormatBookmark, | |
15 kClipboardFormatLast = kClipboardFormatBookmark, | |
16 }; | |
17 | |
18 } // namespace | |
19 | |
20 #endif // CONTENT_COMMON_CLIPBOARD_MESSAGE_ENUMS_H_ | |
OLD | NEW |