aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/utils
diff options
context:
space:
mode:
authorGravatar sammc <sammc@chromium.org>2015-06-30 07:09:49 -0700
committerGravatar Commit bot <commit-bot@chromium.org>2015-06-30 07:09:49 -0700
commit98fc73c7a9fa5f8e4f6fb0a1af0523d4518d6a3a (patch)
treefdb6ccbbd2e9ce5be3eeae501d67f1f232c82561 /src/utils
parent91b6f32e07aa479fc634bfc6fc88fe949b933236 (diff)
Change initializer list order to match field declaration order.
BUG=chromium:505304 Review URL: https://codereview.chromium.org/1214933004
Diffstat (limited to 'src/utils')
-rw-r--r--src/utils/win/SkDWrite.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/utils/win/SkDWrite.h b/src/utils/win/SkDWrite.h
index dfab3ea7d2..d5775c1104 100644
--- a/src/utils/win/SkDWrite.h
+++ b/src/utils/win/SkDWrite.h
@@ -57,7 +57,7 @@ HRESULT SkGetGetUserDefaultLocaleNameProc(SkGetUserDefaultLocaleNameProc* proc);
class AutoDWriteTable {
public:
- AutoDWriteTable(IDWriteFontFace* fontFace, UINT32 beTag) : fFontFace(fontFace), fExists(FALSE) {
+ AutoDWriteTable(IDWriteFontFace* fontFace, UINT32 beTag) : fExists(FALSE), fFontFace(fontFace) {
// Any errors are ignored, user must check fExists anyway.
fontFace->TryGetFontTable(beTag,
reinterpret_cast<const void **>(&fData), &fSize, &fLock, &fExists);