| 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 12 matching lines...) Expand all Loading... |
| 23 * SUCH DAMAGE. | 23 * SUCH DAMAGE. |
| 24 */ | 24 */ |
| 25 | 25 |
| 26 #ifndef ValidationMessageClientImpl_h | 26 #ifndef ValidationMessageClientImpl_h |
| 27 #define ValidationMessageClientImpl_h | 27 #define ValidationMessageClientImpl_h |
| 28 | 28 |
| 29 #include "core/page/ValidationMessageClient.h" | 29 #include "core/page/ValidationMessageClient.h" |
| 30 #include "platform/Timer.h" | 30 #include "platform/Timer.h" |
| 31 #include "platform/geometry/IntRect.h" | 31 #include "platform/geometry/IntRect.h" |
| 32 #include "platform/heap/Handle.h" | 32 #include "platform/heap/Handle.h" |
| 33 #include "wtf/text/WTFString.h" | 33 #include "platform/wtf/text/WTFString.h" |
| 34 | 34 |
| 35 namespace blink { | 35 namespace blink { |
| 36 | 36 |
| 37 class FrameView; | 37 class FrameView; |
| 38 class WebViewImpl; | 38 class WebViewImpl; |
| 39 | 39 |
| 40 class ValidationMessageClientImpl final | 40 class ValidationMessageClientImpl final |
| 41 : public GarbageCollectedFinalized<ValidationMessageClientImpl>, | 41 : public GarbageCollectedFinalized<ValidationMessageClientImpl>, |
| 42 public ValidationMessageClient { | 42 public ValidationMessageClient { |
| 43 USING_GARBAGE_COLLECTED_MIXIN(ValidationMessageClientImpl); | 43 USING_GARBAGE_COLLECTED_MIXIN(ValidationMessageClientImpl); |
| (...skipping 25 matching lines...) Expand all Loading... |
| 69 String m_message; | 69 String m_message; |
| 70 IntRect m_lastAnchorRectInScreen; | 70 IntRect m_lastAnchorRectInScreen; |
| 71 float m_lastPageScaleFactor; | 71 float m_lastPageScaleFactor; |
| 72 double m_finishTime; | 72 double m_finishTime; |
| 73 std::unique_ptr<TimerBase> m_timer; | 73 std::unique_ptr<TimerBase> m_timer; |
| 74 }; | 74 }; |
| 75 | 75 |
| 76 } // namespace blink | 76 } // namespace blink |
| 77 | 77 |
| 78 #endif | 78 #endif |
| OLD | NEW |