Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(215)

Issue 2807913002: Replace ASSERT, ASSERT_NOT_REACHED, and RELEASE_ASSERT in platform/fonts (Closed)

Created:
3 years, 8 months ago by Hwanseung Lee
Modified:
3 years, 8 months ago
Reviewers:
tkent, drott, eae
CC:
ajuma+watch_chromium.org, blink-reviews, blink-reviews-platform-graphics_chromium.org, Rik, chromium-reviews, dshwang, drott+blinkwatch_chromium.org, krit, fmalita+watch_chromium.org, Justin Novosad, kinuko+watch, mac-reviews_chromium.org, pdr+graphicswatchlist_chromium.org, rwlbuis, Stephen Chennney
Target Ref:
refs/heads/master
Project:
chromium
Visibility:
Public.

Description

Replace ASSERT, ASSERT_NOT_REACHED, and RELEASE_ASSERT in platform/fonts Replace ASSERT, RELEASE_ASSERT, and ASSERT_NOT_REACHED with DCHECK_op, CHECK_op, and NOTREACHED respectively in third_party/WebKit/Source/platform/fonts BUG=707657 Review-Url: https://codereview.chromium.org/2807913002 Cr-Commit-Position: refs/heads/master@{#463850} Committed: https://chromium.googlesource.com/chromium/src/+/e5e496d06dc34dd313677ad3cd125d719d838830

Patch Set 1 #

Patch Set 2 : Replace ASSERT, ASSERT_NOT_REACHED, and RELEASE_ASSERT in platform/fonts #

Total comments: 8

Patch Set 3 : rebase #

Unified diffs Side-by-side diffs Delta from patch set Stats (+109 lines, -106 lines) Patch
M third_party/WebKit/Source/platform/fonts/CharacterRange.h View 1 2 1 chunk +1 line, -1 line 0 comments Download
M third_party/WebKit/Source/platform/fonts/Font.h View 1 2 1 chunk +2 lines, -2 lines 0 comments Download
M third_party/WebKit/Source/platform/fonts/Font.cpp View 1 2 1 chunk +2 lines, -1 line 0 comments Download
M third_party/WebKit/Source/platform/fonts/FontCache.h View 1 2 1 chunk +1 line, -1 line 0 comments Download
M third_party/WebKit/Source/platform/fonts/FontCache.cpp View 1 2 7 chunks +7 lines, -7 lines 0 comments Download
M third_party/WebKit/Source/platform/fonts/FontCacheMemoryDumpProvider.cpp View 1 2 1 chunk +1 line, -1 line 0 comments Download
M third_party/WebKit/Source/platform/fonts/FontDataCache.cpp View 1 2 2 chunks +4 lines, -4 lines 0 comments Download
M third_party/WebKit/Source/platform/fonts/FontDescription.cpp View 1 2 2 chunks +2 lines, -2 lines 0 comments Download
M third_party/WebKit/Source/platform/fonts/FontFaceCreationParams.h View 1 2 1 chunk +4 lines, -4 lines 0 comments Download
M third_party/WebKit/Source/platform/fonts/FontFallbackIterator.cpp View 1 2 2 chunks +2 lines, -2 lines 0 comments Download
M third_party/WebKit/Source/platform/fonts/FontFallbackList.h View 1 2 2 chunks +3 lines, -3 lines 0 comments Download
M third_party/WebKit/Source/platform/fonts/FontFallbackList.cpp View 1 2 5 chunks +5 lines, -5 lines 0 comments Download
M third_party/WebKit/Source/platform/fonts/FontPlatformData.cpp View 1 2 2 chunks +3 lines, -3 lines 0 comments Download
M third_party/WebKit/Source/platform/fonts/GlyphMetricsMap.h View 1 2 1 chunk +1 line, -1 line 0 comments Download
M third_party/WebKit/Source/platform/fonts/OrientationIterator.cpp View 1 2 1 chunk +1 line, -1 line 0 comments Download
M third_party/WebKit/Source/platform/fonts/OrientationIteratorTest.cpp View 1 2 1 chunk +1 line, -1 line 0 comments Download
M third_party/WebKit/Source/platform/fonts/ScriptRunIterator.cpp View 1 2 1 chunk +2 lines, -2 lines 0 comments Download
M third_party/WebKit/Source/platform/fonts/ScriptRunIteratorTest.cpp View 1 2 4 chunks +18 lines, -17 lines 0 comments Download
M third_party/WebKit/Source/platform/fonts/SimpleFontData.h View 1 2 1 chunk +1 line, -1 line 0 comments Download
M third_party/WebKit/Source/platform/fonts/SimpleFontData.cpp View 1 2 2 chunks +2 lines, -2 lines 0 comments Download
M third_party/WebKit/Source/platform/fonts/SmallCapsIteratorTest.cpp View 1 2 1 chunk +1 line, -1 line 0 comments Download
M third_party/WebKit/Source/platform/fonts/SymbolsIteratorTest.cpp View 1 2 1 chunk +1 line, -1 line 0 comments Download
M third_party/WebKit/Source/platform/fonts/UTF16TextIterator.cpp View 1 2 1 chunk +1 line, -1 line 0 comments Download
M third_party/WebKit/Source/platform/fonts/mac/FontFamilyMatcherMac.mm View 1 2 1 chunk +2 lines, -1 line 0 comments Download
M third_party/WebKit/Source/platform/fonts/mac/FontPlatformDataMac.mm View 1 2 1 chunk +1 line, -1 line 0 comments Download
M third_party/WebKit/Source/platform/fonts/opentype/OpenTypeCapsSupport.cpp View 1 2 1 chunk +1 line, -1 line 0 comments Download
M third_party/WebKit/Source/platform/fonts/opentype/OpenTypeCapsSupportMPL.cpp View 1 2 1 chunk +2 lines, -2 lines 0 comments Download
M third_party/WebKit/Source/platform/fonts/opentype/OpenTypeVerticalData.cpp View 1 2 1 chunk +1 line, -1 line 0 comments Download
M third_party/WebKit/Source/platform/fonts/shaping/CachingWordShapeIterator.h View 1 2 4 chunks +4 lines, -4 lines 0 comments Download
M third_party/WebKit/Source/platform/fonts/shaping/CaseMappingHarfBuzzBufferFiller.cpp View 1 2 1 chunk +2 lines, -2 lines 0 comments Download
M third_party/WebKit/Source/platform/fonts/shaping/HarfBuzzFace.cpp View 1 2 5 chunks +5 lines, -5 lines 0 comments Download
M third_party/WebKit/Source/platform/fonts/shaping/HarfBuzzShaper.cpp View 1 2 3 chunks +3 lines, -3 lines 0 comments Download
M third_party/WebKit/Source/platform/fonts/shaping/RunSegmenter.cpp View 1 2 2 chunks +2 lines, -2 lines 0 comments Download
M third_party/WebKit/Source/platform/fonts/shaping/RunSegmenterTest.cpp View 1 2 1 chunk +1 line, -1 line 0 comments Download
M third_party/WebKit/Source/platform/fonts/shaping/ShapeCache.h View 1 2 1 chunk +1 line, -1 line 0 comments Download
M third_party/WebKit/Source/platform/fonts/shaping/ShapeResult.cpp View 1 2 5 chunks +7 lines, -7 lines 0 comments Download
M third_party/WebKit/Source/platform/fonts/shaping/ShapeResultBuffer.cpp View 1 2 2 chunks +2 lines, -2 lines 0 comments Download
M third_party/WebKit/Source/platform/fonts/shaping/ShapeResultSpacing.cpp View 1 2 2 chunks +2 lines, -2 lines 0 comments Download
M third_party/WebKit/Source/platform/fonts/skia/FontCacheSkia.cpp View 1 2 2 chunks +2 lines, -2 lines 0 comments Download
M third_party/WebKit/Source/platform/fonts/win/FontCacheSkiaWin.cpp View 1 2 2 chunks +2 lines, -2 lines 0 comments Download
M third_party/WebKit/Source/platform/fonts/win/FontFallbackWin.cpp View 1 2 2 chunks +3 lines, -3 lines 0 comments Download

Messages

Total messages: 38 (29 generated)
Hwanseung Lee
PTAL, thank you.
3 years, 8 months ago (2017-04-08 10:00:09 UTC) #10
eae
LGTM
3 years, 8 months ago (2017-04-09 07:30:12 UTC) #11
commit-bot: I haz the power
CQ is trying da patch. Follow status at https://chromium-cq-status.appspot.com/v2/patch-status/codereview.chromium.org/2807913002/20001
3 years, 8 months ago (2017-04-09 08:21:55 UTC) #13
commit-bot: I haz the power
Failed to apply patch for third_party/WebKit/Source/platform/fonts/Font.cpp: While running git apply --index -3 -p1; error: patch ...
3 years, 8 months ago (2017-04-09 21:55:50 UTC) #15
tkent
https://codereview.chromium.org/2807913002/diff/20001/third_party/WebKit/Source/platform/fonts/Font.cpp File third_party/WebKit/Source/platform/fonts/Font.cpp (right): https://codereview.chromium.org/2807913002/diff/20001/third_party/WebKit/Source/platform/fonts/Font.cpp#newcode162 third_party/WebKit/Source/platform/fonts/Font.cpp:162: DCHECK((runInfo.from == 0) && (runInfo.to == run.length())); Split this ...
3 years, 8 months ago (2017-04-09 23:13:23 UTC) #16
Hwanseung Lee
@tkent PTAL, thank you. https://codereview.chromium.org/2807913002/diff/20001/third_party/WebKit/Source/platform/fonts/Font.cpp File third_party/WebKit/Source/platform/fonts/Font.cpp (right): https://codereview.chromium.org/2807913002/diff/20001/third_party/WebKit/Source/platform/fonts/Font.cpp#newcode162 third_party/WebKit/Source/platform/fonts/Font.cpp:162: DCHECK((runInfo.from == 0) && (runInfo.to ...
3 years, 8 months ago (2017-04-11 22:25:09 UTC) #31
tkent
lgtm
3 years, 8 months ago (2017-04-11 23:48:07 UTC) #32
commit-bot: I haz the power
CQ is trying da patch. Follow status at https://chromium-cq-status.appspot.com/v2/patch-status/codereview.chromium.org/2807913002/80001
3 years, 8 months ago (2017-04-11 23:58:04 UTC) #35
commit-bot: I haz the power
3 years, 8 months ago (2017-04-12 00:11:21 UTC) #38
Message was sent while issue was closed.
Committed patchset #3 (id:80001) as
https://chromium.googlesource.com/chromium/src/+/e5e496d06dc34dd313677ad3cd12...

Powered by Google App Engine
This is Rietveld 408576698