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

Side by Side 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 unified diff | Download patch | Annotate | Revision Log
OLDNEW
(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_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698