| 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 102 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 113 #include "sky/engine/core/rendering/RenderLayer.h" | 113 #include "sky/engine/core/rendering/RenderLayer.h" |
| 114 #include "sky/engine/core/rendering/RenderObject.h" | 114 #include "sky/engine/core/rendering/RenderObject.h" |
| 115 #include "sky/engine/core/rendering/RenderTreeAsText.h" | 115 #include "sky/engine/core/rendering/RenderTreeAsText.h" |
| 116 #include "sky/engine/core/rendering/RenderView.h" | 116 #include "sky/engine/core/rendering/RenderView.h" |
| 117 #include "sky/engine/core/rendering/style/StyleInheritedData.h" | 117 #include "sky/engine/core/rendering/style/StyleInheritedData.h" |
| 118 #include "sky/engine/platform/TraceEvent.h" | 118 #include "sky/engine/platform/TraceEvent.h" |
| 119 #include "sky/engine/platform/UserGestureIndicator.h" | 119 #include "sky/engine/platform/UserGestureIndicator.h" |
| 120 #include "sky/engine/platform/clipboard/ClipboardUtilities.h" | 120 #include "sky/engine/platform/clipboard/ClipboardUtilities.h" |
| 121 #include "sky/engine/platform/fonts/FontCache.h" | 121 #include "sky/engine/platform/fonts/FontCache.h" |
| 122 #include "sky/engine/platform/graphics/GraphicsContext.h" | 122 #include "sky/engine/platform/graphics/GraphicsContext.h" |
| 123 #include "sky/engine/platform/graphics/GraphicsLayerClient.h" | |
| 124 #include "sky/engine/platform/graphics/skia/SkiaUtils.h" | 123 #include "sky/engine/platform/graphics/skia/SkiaUtils.h" |
| 125 #include "sky/engine/platform/heap/Handle.h" | 124 #include "sky/engine/platform/heap/Handle.h" |
| 126 #include "sky/engine/platform/network/ResourceRequest.h" | 125 #include "sky/engine/platform/network/ResourceRequest.h" |
| 127 #include "sky/engine/platform/scroll/ScrollTypes.h" | 126 #include "sky/engine/platform/scroll/ScrollTypes.h" |
| 128 #include "sky/engine/platform/scroll/Scrollbar.h" | 127 #include "sky/engine/platform/scroll/Scrollbar.h" |
| 129 #include "sky/engine/platform/weborigin/KURL.h" | 128 #include "sky/engine/platform/weborigin/KURL.h" |
| 130 #include "sky/engine/platform/weborigin/SchemeRegistry.h" | 129 #include "sky/engine/platform/weborigin/SchemeRegistry.h" |
| 131 #include "sky/engine/platform/weborigin/SecurityPolicy.h" | 130 #include "sky/engine/platform/weborigin/SecurityPolicy.h" |
| 132 #include "sky/engine/public/platform/Platform.h" | 131 #include "sky/engine/public/platform/Platform.h" |
| 133 #include "sky/engine/public/platform/WebFloatPoint.h" | 132 #include "sky/engine/public/platform/WebFloatPoint.h" |
| (...skipping 641 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 775 } | 774 } |
| 776 | 775 |
| 777 void WebLocalFrameImpl::invalidateAll() const | 776 void WebLocalFrameImpl::invalidateAll() const |
| 778 { | 777 { |
| 779 ASSERT(frame() && frame()->view()); | 778 ASSERT(frame() && frame()->view()); |
| 780 FrameView* view = frame()->view(); | 779 FrameView* view = frame()->view(); |
| 781 view->invalidateRect(view->frameRect()); | 780 view->invalidateRect(view->frameRect()); |
| 782 } | 781 } |
| 783 | 782 |
| 784 } // namespace blink | 783 } // namespace blink |
| OLD | NEW |