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

Side by Side Diff: third_party/WebKit/Source/core/style/StyleInheritedData.h

Issue 2299213003: Fix the inconsistent problem while the content of textNodes is changed (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: 1. change 'FingerPrint' to 'Fingerprint' 2. remove const from BlockSet 3. change 'textAutosizingNew… Created 4 years, 1 month ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
1 /* 1 /*
2 * Copyright (C) 2000 Lars Knoll (knoll@kde.org) 2 * Copyright (C) 2000 Lars Knoll (knoll@kde.org)
3 * (C) 2000 Antti Koivisto (koivisto@kde.org) 3 * (C) 2000 Antti Koivisto (koivisto@kde.org)
4 * (C) 2000 Dirk Mueller (mueller@kde.org) 4 * (C) 2000 Dirk Mueller (mueller@kde.org)
5 * Copyright (C) 2003, 2005, 2006, 2007, 2008 Apple Inc. All rights reserved. 5 * Copyright (C) 2003, 2005, 2006, 2007, 2008 Apple Inc. All rights reserved.
6 * Copyright (C) 2006 Graham Dennis (graham.dennis@gmail.com) 6 * Copyright (C) 2006 Graham Dennis (graham.dennis@gmail.com)
7 * 7 *
8 * This library is free software; you can redistribute it and/or 8 * This library is free software; you can redistribute it and/or
9 * modify it under the terms of the GNU Library General Public 9 * modify it under the terms of the GNU Library General Public
10 * License as published by the Free Software Foundation; either 10 * License as published by the Free Software Foundation; either
(...skipping 43 matching lines...) Expand 10 before | Expand all | Expand 10 after
54 short vertical_border_spacing; 54 short vertical_border_spacing;
55 55
56 // could be packed in a short but doesn't 56 // could be packed in a short but doesn't
57 // make a difference currently because of padding 57 // make a difference currently because of padding
58 Length line_height; 58 Length line_height;
59 59
60 Font font; 60 Font font;
61 Color color; 61 Color color;
62 Color visitedLinkColor; 62 Color visitedLinkColor;
63 float textAutosizingMultiplier; 63 float textAutosizingMultiplier;
64 unsigned textAutosizingFingerprint;
pdr. 2016/11/10 06:04:09 Echoing Steve's comment a bit, I think we should a
cathiechentx 2016/11/11 09:34:12 Lol, here is the shortcut to pass things across th
64 65
65 private: 66 private:
66 StyleInheritedData(); 67 StyleInheritedData();
67 StyleInheritedData(const StyleInheritedData&); 68 StyleInheritedData(const StyleInheritedData&);
68 }; 69 };
69 70
70 } // namespace blink 71 } // namespace blink
71 72
72 #endif // StyleInheritedData_h 73 #endif // StyleInheritedData_h
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698