Changeset 151364 in webkit


Ignore:
Timestamp:
Jun 9, 2013 11:25:49 PM (11 years ago)
Author:
commit-queue@webkit.org
Message:

[CoordinatedGraphics] Typo in argument decoder for CoordinatedGraphicsState
https://bugs.webkit.org/show_bug.cgi?id=117384

Patch by Jae Hyun Park <jae.park@company100.net> on 2013-06-09
Reviewed by Noam Rosenthal.

For CSS Shaders, it must decode state.customFiltersToRemove instead of
state.updateAtlasesToRemove.

  • Shared/CoordinatedGraphics/CoordinatedGraphicsArgumentCoders.cpp:

(CoreIPC::::decode):

Location:
trunk/Source/WebKit2
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/Source/WebKit2/ChangeLog

    r151353 r151364  
     12013-06-09  Jae Hyun Park  <jae.park@company100.net>
     2
     3        [CoordinatedGraphics] Typo in argument decoder for CoordinatedGraphicsState
     4        https://bugs.webkit.org/show_bug.cgi?id=117384
     5
     6        Reviewed by Noam Rosenthal.
     7
     8        For CSS Shaders, it must decode state.customFiltersToRemove instead of
     9        state.updateAtlasesToRemove.
     10
     11        * Shared/CoordinatedGraphics/CoordinatedGraphicsArgumentCoders.cpp:
     12        (CoreIPC::::decode):
     13
    1142013-06-08  Jae Hyun Park  <jae.park@company100.net>
    215
  • trunk/Source/WebKit2/Shared/CoordinatedGraphics/CoordinatedGraphicsArgumentCoders.cpp

    r151212 r151364  
    11851185    }
    11861186
    1187     if (!decoder.decode(state.updateAtlasesToRemove))
     1187    if (!decoder.decode(state.customFiltersToRemove))
    11881188        return false;
    11891189#endif
Note: See TracChangeset for help on using the changeset viewer.