| OLD | NEW |
| 1 /* | 1 /* |
| 2 * Copyright (C) 2009 Google Inc. All rights reserved. | 2 * Copyright (C) 2009 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 are | 5 * modification, are permitted provided that the following conditions are |
| 6 * met: | 6 * met: |
| 7 * | 7 * |
| 8 * * Redistributions of source code must retain the above copyright | 8 * * Redistributions of source code must retain the above copyright |
| 9 * notice, this list of conditions and the following disclaimer. | 9 * notice, this list of conditions and the following disclaimer. |
| 10 * * Redistributions in binary form must reproduce the above | 10 * * Redistributions in binary form must reproduce the above |
| (...skipping 133 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 144 #include "public/web/WebElement.h" | 144 #include "public/web/WebElement.h" |
| 145 #include "public/web/WebFindOptions.h" | 145 #include "public/web/WebFindOptions.h" |
| 146 #include "public/web/WebFrameClient.h" | 146 #include "public/web/WebFrameClient.h" |
| 147 #include "public/web/WebIconURL.h" | 147 #include "public/web/WebIconURL.h" |
| 148 #include "public/web/WebNode.h" | 148 #include "public/web/WebNode.h" |
| 149 #include "public/web/WebPerformance.h" | 149 #include "public/web/WebPerformance.h" |
| 150 #include "public/web/WebRange.h" | 150 #include "public/web/WebRange.h" |
| 151 #include "public/web/WebScriptSource.h" | 151 #include "public/web/WebScriptSource.h" |
| 152 #include "public/web/WebSerializedScriptValue.h" | 152 #include "public/web/WebSerializedScriptValue.h" |
| 153 #include "web/CompositionUnderlineVectorBuilder.h" | 153 #include "web/CompositionUnderlineVectorBuilder.h" |
| 154 #include "web/PageOverlay.h" | |
| 155 #include "web/WebViewImpl.h" | 154 #include "web/WebViewImpl.h" |
| 156 #include "wtf/CurrentTime.h" | 155 #include "wtf/CurrentTime.h" |
| 157 #include "wtf/HashMap.h" | 156 #include "wtf/HashMap.h" |
| 158 #include <algorithm> | 157 #include <algorithm> |
| 159 | 158 |
| 160 namespace blink { | 159 namespace blink { |
| 161 | 160 |
| 162 static int frameCount = 0; | 161 static int frameCount = 0; |
| 163 | 162 |
| 164 // Key for a StatsCounter tracking how many WebFrames are active. | 163 // Key for a StatsCounter tracking how many WebFrames are active. |
| (...skipping 654 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 819 } | 818 } |
| 820 | 819 |
| 821 void WebLocalFrameImpl::invalidateAll() const | 820 void WebLocalFrameImpl::invalidateAll() const |
| 822 { | 821 { |
| 823 ASSERT(frame() && frame()->view()); | 822 ASSERT(frame() && frame()->view()); |
| 824 FrameView* view = frame()->view(); | 823 FrameView* view = frame()->view(); |
| 825 view->invalidateRect(view->frameRect()); | 824 view->invalidateRect(view->frameRect()); |
| 826 } | 825 } |
| 827 | 826 |
| 828 } // namespace blink | 827 } // namespace blink |
| OLD | NEW |