Chromium Code Reviews| OLD | NEW |
|---|---|
| (Empty) | |
| 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 | |
| 3 // found in the LICENSE file. | |
| 4 | |
| 5 #ifndef UAStyleChange_h | |
| 6 #define UAStyleChange_h | |
| 7 | |
| 8 namespace blink { | |
| 9 | |
| 10 class UAStyleChange { | |
| 11 public: | |
| 12 UAStyleChange(bool hasAppearance) | |
| 13 : hasAppearance(hasAppearance) | |
| 14 , backgroundChanged(false) | |
| 15 , borderChanged(false) | |
| 16 { | |
| 17 } | |
| 18 | |
| 19 bool hasAppearance; | |
|
Timothy Loh
2015/02/06 00:20:29
m_ for members
| |
| 20 bool backgroundChanged; | |
| 21 bool borderChanged; | |
| 22 }; | |
| 23 | |
| 24 } // namespace blink | |
| 25 | |
| 26 #endif // UAStyleChange_h | |
| OLD | NEW |