| OLD | NEW |
| 1 // Copyright 2015 The Chromium Authors. All rights reserved. | 1 // Copyright 2015 The Chromium Authors. All rights reserved. |
| 2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be |
| 3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
| 4 | 4 |
| 5 #ifndef AuthorStyleInfo_h | 5 #ifndef AuthorStyleInfo_h |
| 6 #define AuthorStyleInfo_h | 6 #define AuthorStyleInfo_h |
| 7 | 7 |
| 8 namespace blink { | 8 namespace blink { |
| 9 | 9 |
| 10 // This class knows whether the author specified a background and/or border on | 10 // This class knows whether the author specified a background and/or border on |
| (...skipping 12 matching lines...) Expand all Loading... |
| 23 bool specifiesBorder() const { return m_specifiesBorder; }; | 23 bool specifiesBorder() const { return m_specifiesBorder; }; |
| 24 | 24 |
| 25 private: | 25 private: |
| 26 bool m_specifiesBackground; | 26 bool m_specifiesBackground; |
| 27 bool m_specifiesBorder; | 27 bool m_specifiesBorder; |
| 28 }; | 28 }; |
| 29 | 29 |
| 30 } // namespace blink | 30 } // namespace blink |
| 31 | 31 |
| 32 #endif // AuthorStyleInfo_h | 32 #endif // AuthorStyleInfo_h |
| OLD | NEW |