Changeset 181081 in webkit


Ignore:
Timestamp:
Mar 5, 2015 9:09:32 AM (9 years ago)
Author:
Csaba Osztrogonác
Message:

[cmake] Fix the web replay build
https://bugs.webkit.org/show_bug.cgi?id=142331

Reviewed by Gyuyoung Kim.

  • CMakeLists.txt:
  • inspector/InspectorReplayAgent.cpp:

(WebCore::buildInspectorObjectForSessionState):
(WebCore::buildInspectorObjectForSegmentState):

Location:
trunk/Source/WebCore
Files:
3 edited

Legend:

Unmodified
Added
Removed
  • trunk/Source/WebCore/CMakeLists.txt

    r180996 r181081  
    30853085    )
    30863086
    3087     set(WebCore_WEB_REPLAY_INPUTS ${CMAKE_CURRENT_SOURCE_DIR}/replay/WebInputs.json)
     3087    set(WebCore_WEB_REPLAY_INPUTS ${CMAKE_CURRENT_SOURCE_DIR}/replay/WebInputs.json ${JAVASCRIPTCORE_DIR}/replay/JSInputs.json)
    30883088    add_custom_command(
    30893089        OUTPUT ${DERIVED_SOURCES_WEBCORE_DIR}/WebReplayInputs.h ${DERIVED_SOURCES_WEBCORE_DIR}/WebReplayInputs.cpp
  • trunk/Source/WebCore/ChangeLog

    r181074 r181081  
     12015-03-05  Csaba Osztrogonác  <ossy@webkit.org>
     2
     3        [cmake] Fix the web replay build
     4        https://bugs.webkit.org/show_bug.cgi?id=142331
     5
     6        Reviewed by Gyuyoung Kim.
     7
     8        * CMakeLists.txt:
     9        * inspector/InspectorReplayAgent.cpp:
     10        (WebCore::buildInspectorObjectForSessionState):
     11        (WebCore::buildInspectorObjectForSegmentState):
     12
    1132015-03-05  Carlos Garcia Campos  <cgarcia@igalia.com>
    214
  • trunk/Source/WebCore/inspector/InspectorReplayAgent.cpp

    r180116 r181081  
    9494    case WebCore::SessionState::Replaying: return Inspector::Protocol::Replay::SessionState::Replaying;
    9595    }
     96
     97    RELEASE_ASSERT_NOT_REACHED();
     98    return Inspector::Protocol::Replay::SessionState::Inactive;
    9699}
    97100
     
    104107    case WebCore::SegmentState::Dispatching: return Inspector::Protocol::Replay::SegmentState::Dispatching;
    105108    }
     109
     110    RELEASE_ASSERT_NOT_REACHED();
     111    return Inspector::Protocol::Replay::SegmentState::Unloaded;
    106112}
    107113
Note: See TracChangeset for help on using the changeset viewer.