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

Side by Side Diff: Source/core/testing/Internals.cpp

Issue 99103006: Moving GraphicsContext and dependencies from core to platform. (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Final patch - fixes Android Created 7 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 | Annotate | Revision Log
OLDNEW
1 /* 1 /*
2 * Copyright (C) 2012 Google Inc. All rights reserved. 2 * Copyright (C) 2012 Google Inc. All rights reserved.
3 * Copyright (C) 2013 Apple Inc. All rights reserved. 3 * Copyright (C) 2013 Apple Inc. All rights reserved.
4 * 4 *
5 * Redistribution and use in source and binary forms, with or without 5 * Redistribution and use in source and binary forms, with or without
6 * modification, are permitted provided that the following conditions 6 * modification, are permitted provided that the following conditions
7 * are met: 7 * are met:
8 * 8 *
9 * 1. Redistributions of source code must retain the above copyright 9 * 1. Redistributions of source code must retain the above copyright
10 * notice, this list of conditions and the following disclaimer. 10 * notice, this list of conditions and the following disclaimer.
(...skipping 85 matching lines...) Expand 10 before | Expand all | Expand 10 after
96 #include "core/page/ChromeClient.h" 96 #include "core/page/ChromeClient.h"
97 #include "core/frame/DOMWindow.h" 97 #include "core/frame/DOMWindow.h"
98 #include "core/page/EventHandler.h" 98 #include "core/page/EventHandler.h"
99 #include "core/frame/FrameView.h" 99 #include "core/frame/FrameView.h"
100 #include "core/page/Page.h" 100 #include "core/page/Page.h"
101 #include "core/page/PagePopupController.h" 101 #include "core/page/PagePopupController.h"
102 #include "core/page/PrintContext.h" 102 #include "core/page/PrintContext.h"
103 #include "core/page/Settings.h" 103 #include "core/page/Settings.h"
104 #include "core/frame/animation/AnimationController.h" 104 #include "core/frame/animation/AnimationController.h"
105 #include "core/platform/Cursor.h" 105 #include "core/platform/Cursor.h"
106 #include "core/platform/graphics/GraphicsLayer.h"
107 #include "core/platform/graphics/filters/FilterOperation.h"
108 #include "core/platform/graphics/filters/FilterOperations.h"
109 #include "core/platform/graphics/gpu/SharedGraphicsContext3D.h"
110 #include "core/rendering/CompositedLayerMapping.h" 106 #include "core/rendering/CompositedLayerMapping.h"
111 #include "core/rendering/RenderLayer.h" 107 #include "core/rendering/RenderLayer.h"
112 #include "core/rendering/RenderLayerCompositor.h" 108 #include "core/rendering/RenderLayerCompositor.h"
113 #include "core/rendering/RenderMenuList.h" 109 #include "core/rendering/RenderMenuList.h"
114 #include "core/rendering/RenderObject.h" 110 #include "core/rendering/RenderObject.h"
115 #include "core/rendering/RenderTreeAsText.h" 111 #include "core/rendering/RenderTreeAsText.h"
116 #include "core/rendering/RenderView.h" 112 #include "core/rendering/RenderView.h"
117 #include "core/testing/GCObservation.h" 113 #include "core/testing/GCObservation.h"
118 #include "core/workers/WorkerThread.h" 114 #include "core/workers/WorkerThread.h"
119 #include "platform/ColorChooser.h" 115 #include "platform/ColorChooser.h"
120 #include "platform/Language.h" 116 #include "platform/Language.h"
121 #include "platform/TraceEvent.h" 117 #include "platform/TraceEvent.h"
122 #include "platform/geometry/IntRect.h" 118 #include "platform/geometry/IntRect.h"
123 #include "platform/geometry/LayoutRect.h" 119 #include "platform/geometry/LayoutRect.h"
120 #include "platform/graphics/GraphicsLayer.h"
121 #include "platform/graphics/filters/FilterOperation.h"
122 #include "platform/graphics/filters/FilterOperations.h"
123 #include "platform/graphics/gpu/SharedGraphicsContext3D.h"
124 #include "platform/weborigin/SchemeRegistry.h" 124 #include "platform/weborigin/SchemeRegistry.h"
125 #include "public/platform/WebLayer.h" 125 #include "public/platform/WebLayer.h"
126 #include "wtf/InstanceCounter.h" 126 #include "wtf/InstanceCounter.h"
127 #include "wtf/dtoa.h" 127 #include "wtf/dtoa.h"
128 #include "wtf/text/StringBuffer.h" 128 #include "wtf/text/StringBuffer.h"
129 129
130 namespace WebCore { 130 namespace WebCore {
131 131
132 static MockPagePopupDriver* s_pagePopupDriver = 0; 132 static MockPagePopupDriver* s_pagePopupDriver = 0;
133 133
(...skipping 2181 matching lines...) Expand 10 before | Expand all | Expand 10 after
2315 } 2315 }
2316 2316
2317 document->updateLayout(); 2317 document->updateLayout();
2318 2318
2319 RenderView* view = document->renderView(); 2319 RenderView* view = document->renderView();
2320 if (view->compositor()) 2320 if (view->compositor())
2321 view->compositor()->updateCompositingLayers(CompositingUpdateFinishAllDe ferredWork); 2321 view->compositor()->updateCompositingLayers(CompositingUpdateFinishAllDe ferredWork);
2322 } 2322 }
2323 2323
2324 } 2324 }
OLDNEW
« no previous file with comments | « Source/core/svg/graphics/filters/SVGFilterBuilder.cpp ('k') | Source/modules/imagebitmap/ImageBitmapFactories.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698