Changeset 81792 in webkit


Ignore:
Timestamp:
Mar 23, 2011 12:13:10 PM (13 years ago)
Author:
commit-queue@webkit.org
Message:

2011-03-23 Viet-Trung Luu <viettrungluu@chromium.org>

Reviewed by Tony Chang.

[chromium] Add FormatPlainText to WebClipboard::Format enumeration.
https://bugs.webkit.org/show_bug.cgi?id=56868

Chromium's WebClipboard::isFormatAvailable() will be correspondingly
extended.

  • platform/chromium/PasteboardPrivate.h: Add corresponding enum entry.

This part of the change is inert and should have no effect.

2011-03-23 Viet-Trung Luu <viettrungluu@chromium.org>

Reviewed by Tony Chang.

[chromium] Add FormatPlainText to WebClipboard::Format enumeration.
https://bugs.webkit.org/show_bug.cgi?id=56868

Chromium's WebClipboard::isFormatAvailable() will be correspondingly
extended.

  • public/WebClipboard.h:
  • src/AssertMatchingEnums.cpp:
Location:
trunk/Source
Files:
5 edited

Legend:

Unmodified
Added
Removed
  • trunk/Source/WebCore/ChangeLog

    r81789 r81792  
     12011-03-23  Viet-Trung Luu  <viettrungluu@chromium.org>
     2
     3        Reviewed by Tony Chang.
     4
     5        [chromium] Add FormatPlainText to WebClipboard::Format enumeration.
     6        https://bugs.webkit.org/show_bug.cgi?id=56868
     7
     8        Chromium's WebClipboard::isFormatAvailable() will be correspondingly
     9        extended.
     10
     11        * platform/chromium/PasteboardPrivate.h: Add corresponding enum entry.
     12            This part of the change is inert and should have no effect.
     13
    1142011-03-23  Tyler Close  <tjclose@chromium.org>
    215
  • trunk/Source/WebCore/platform/chromium/PasteboardPrivate.h

    r61898 r81792  
    3737    public:
    3838        enum ClipboardFormat {
     39            PlainTextFormat,
    3940            HTMLFormat,
    4041            BookmarkFormat,
  • trunk/Source/WebKit/chromium/ChangeLog

    r81781 r81792  
     12011-03-23  Viet-Trung Luu  <viettrungluu@chromium.org>
     2
     3        Reviewed by Tony Chang.
     4
     5        [chromium] Add FormatPlainText to WebClipboard::Format enumeration.
     6        https://bugs.webkit.org/show_bug.cgi?id=56868
     7
     8        Chromium's WebClipboard::isFormatAvailable() will be correspondingly
     9        extended.
     10
     11        * public/WebClipboard.h:
     12        * src/AssertMatchingEnums.cpp:
     13
    1142011-03-23  Yury Semikhatsky  <yurys@chromium.org>
    215
  • trunk/Source/WebKit/chromium/public/WebClipboard.h

    r80907 r81792  
    4646public:
    4747    enum Format {
     48        FormatPlainText,
    4849        FormatHTML,
    4950        FormatBookmark,
  • trunk/Source/WebKit/chromium/src/AssertMatchingEnums.cpp

    r80635 r81792  
    212212#endif
    213213
     214COMPILE_ASSERT_MATCHING_ENUM(WebClipboard::FormatPlainText, PasteboardPrivate::PlainTextFormat);
    214215COMPILE_ASSERT_MATCHING_ENUM(WebClipboard::FormatHTML, PasteboardPrivate::HTMLFormat);
    215216COMPILE_ASSERT_MATCHING_ENUM(WebClipboard::FormatBookmark, PasteboardPrivate::BookmarkFormat);
Note: See TracChangeset for help on using the changeset viewer.