diff options
author | enne <enne@chromium.org> | 2016-01-06 11:18:40 -0800 |
---|---|---|
committer | Commit bot <commit-bot@chromium.org> | 2016-01-06 19:19:51 +0000 |
commit | 927618090a4655a952bf4174ace62f94e973c7fb (patch) | |
tree | 42224a28dd2c2f3d12fead8c9a6af29d940c4295 /blimp | |
parent | 609f6c2764bc7c96999537d68b09792dd5482282 (diff) | |
download | chromium_src-927618090a4655a952bf4174ace62f94e973c7fb.zip chromium_src-927618090a4655a952bf4174ace62f94e973c7fb.tar.gz chromium_src-927618090a4655a952bf4174ace62f94e973c7fb.tar.bz2 |
Revert cc: turn on strict paint property checking
Reason for revert:
Asserting for people, so not ok to turn on yet.
Original issues's description:
> cc: turn on strict paint property checking
>
> This is in preparation for getting rid of paint properties entirely.
> Turned on the setting always, turned DCHECKs to CHECKs to get better
> canary input, and deleted tests that no longer make sense.
>
> I plan on reverting this patch if this CHECK fires on any page.
>
> R=danakj@chromium.org,chrishtr@chromium.org
> CQ_INCLUDE_TRYBOTS=tryserver.blink:linux_blink_rel
>
> Review URL: https://codereview.chromium.org/1514743002
>
> Cr-Commit-Position: refs/heads/master@{#367360}
TBR=chrishtr@chromium.org
NOPRESUBMIT=true
NOTREECHECKS=true
NOTRY=true
BUG=574649
CQ_INCLUDE_TRYBOTS=tryserver.blink:linux_blink_rel
Review URL: https://codereview.chromium.org/1564883002
Cr-Commit-Position: refs/heads/master@{#367874}
Diffstat (limited to 'blimp')
-rw-r--r-- | blimp/client/compositor/blimp_layer_tree_settings.cc | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/blimp/client/compositor/blimp_layer_tree_settings.cc b/blimp/client/compositor/blimp_layer_tree_settings.cc index 992ccc8..029e328 100644 --- a/blimp/client/compositor/blimp_layer_tree_settings.cc +++ b/blimp/client/compositor/blimp_layer_tree_settings.cc @@ -52,6 +52,7 @@ void PopulateCommonLayerTreeSettings(cc::LayerTreeSettings* settings) { settings->initial_debug_state.show_screen_space_rects = false; settings->initial_debug_state.show_replica_screen_space_rects = false; settings->initial_debug_state.SetRecordRenderingStats(false); + settings->strict_layer_property_change_checking = false; #if defined(OS_ANDROID) if (base::SysInfo::IsLowEndDevice()) |