| OLD | NEW |
| 1 /* | 1 /* |
| 2 * Copyright (C) 2012 Google Inc. All rights reserved. | 2 * Copyright (C) 2012 Google Inc. All rights reserved. |
| 3 * | 3 * |
| 4 * Redistribution and use in source and binary forms, with or without | 4 * Redistribution and use in source and binary forms, with or without |
| 5 * modification, are permitted provided that the following conditions | 5 * modification, are permitted provided that the following conditions |
| 6 * are met: | 6 * are met: |
| 7 * 1. Redistributions of source code must retain the above copyright | 7 * 1. Redistributions of source code must retain the above copyright |
| 8 * notice, this list of conditions and the following disclaimer. | 8 * notice, this list of conditions and the following disclaimer. |
| 9 * 2. Redistributions in binary form must reproduce the above copyright | 9 * 2. Redistributions in binary form must reproduce the above copyright |
| 10 * notice, this list of conditions and the following disclaimer in the | 10 * notice, this list of conditions and the following disclaimer in the |
| (...skipping 51 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 62 bool isValidationMessageVisible(const Element& anchor) override; | 62 bool isValidationMessageVisible(const Element& anchor) override; |
| 63 void documentDetached(const Document&) override; | 63 void documentDetached(const Document&) override; |
| 64 void willBeDestroyed() override; | 64 void willBeDestroyed() override; |
| 65 | 65 |
| 66 WebViewImpl& m_webView; | 66 WebViewImpl& m_webView; |
| 67 Member<const Element> m_currentAnchor; | 67 Member<const Element> m_currentAnchor; |
| 68 String m_message; | 68 String m_message; |
| 69 IntRect m_lastAnchorRectInScreen; | 69 IntRect m_lastAnchorRectInScreen; |
| 70 float m_lastPageScaleFactor; | 70 float m_lastPageScaleFactor; |
| 71 double m_finishTime; | 71 double m_finishTime; |
| 72 Timer<ValidationMessageClientImpl> m_timer; | 72 std::unique_ptr<TimerBase> m_timer; |
| 73 }; | 73 }; |
| 74 | 74 |
| 75 } // namespace blink | 75 } // namespace blink |
| 76 | 76 |
| 77 #endif | 77 #endif |
| OLD | NEW |