Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(418)

Side by Side Diff: sky/engine/web/WebLocalFrameImpl.cpp

Issue 762993003: Remove GraphicsLayer family of classes. (Closed) Base URL: git@github.com:domokit/mojo.git@master
Patch Set: Created 6 years ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
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
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
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
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698