Changeset 158892 in webkit


Ignore:
Timestamp:
Nov 7, 2013 6:22:40 PM (10 years ago)
Author:
andersca@apple.com
Message:

Move m_destinationID to MessageDecoder
https://bugs.webkit.org/show_bug.cgi?id=124026

Reviewed by Andreas Kling.

  • Platform/CoreIPC/ArgumentDecoder.h:
  • Platform/CoreIPC/MessageDecoder.h:

(CoreIPC::MessageDecoder::destinationID):

Location:
trunk/Source/WebKit2
Files:
3 edited

Legend:

Unmodified
Added
Removed
  • trunk/Source/WebKit2/ChangeLog

    r158890 r158892  
     12013-11-07  Anders Carlsson  <andersca@apple.com>
     2
     3        Move m_destinationID to MessageDecoder
     4        https://bugs.webkit.org/show_bug.cgi?id=124026
     5
     6        Reviewed by Andreas Kling.
     7
     8        * Platform/CoreIPC/ArgumentDecoder.h:
     9        * Platform/CoreIPC/MessageDecoder.h:
     10        (CoreIPC::MessageDecoder::destinationID):
     11
    1122013-11-07  Anders Carlsson  <andersca@apple.com>
    213
  • trunk/Source/WebKit2/Platform/CoreIPC/ArgumentDecoder.h

    r156688 r158892  
    4040    virtual ~ArgumentDecoder();
    4141
    42     uint64_t destinationID() const { return m_destinationID; }
    4342    size_t length() const { return m_bufferEnd - m_buffer; }
    4443
     
    10099    bool bufferIsLargeEnoughToContain(unsigned alignment, size_t size) const;
    101100
    102 // FIXME: Move m_destinationID to MessageDecoder.
    103 protected:
    104     uint64_t m_destinationID;
    105 
    106101private:
    107102    uint8_t* m_allocatedBase;
  • trunk/Source/WebKit2/Platform/CoreIPC/MessageDecoder.h

    r156688 r158892  
    4242    StringReference messageReceiverName() const { return m_messageReceiverName; }
    4343    StringReference messageName() const { return m_messageName; }
     44    uint64_t destinationID() const { return m_destinationID; }
    4445
    4546    bool isSyncMessage() const;
     
    5556    StringReference m_messageName;
    5657
     58    uint64_t m_destinationID;
     59
    5760#if PLATFORM(MAC) && __MAC_OS_X_VERSION_MIN_REQUIRED >= 1090
    5861    std::unique_ptr<ImportanceAssertion> m_importanceAssertion;
Note: See TracChangeset for help on using the changeset viewer.