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

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

Issue 54053006: Move weborigin/ under platform/ so that it may someday call platform APIs (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Created 7 years, 1 month 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 103 matching lines...) Expand 10 before | Expand all | Expand 10 after
114 #include "core/rendering/RenderTreeAsText.h" 114 #include "core/rendering/RenderTreeAsText.h"
115 #include "core/rendering/RenderView.h" 115 #include "core/rendering/RenderView.h"
116 #include "core/testing/GCObservation.h" 116 #include "core/testing/GCObservation.h"
117 #include "core/workers/WorkerThread.h" 117 #include "core/workers/WorkerThread.h"
118 #include "platform/ColorChooser.h" 118 #include "platform/ColorChooser.h"
119 #include "platform/Language.h" 119 #include "platform/Language.h"
120 #include "platform/TraceEvent.h" 120 #include "platform/TraceEvent.h"
121 #include "platform/geometry/IntRect.h" 121 #include "platform/geometry/IntRect.h"
122 #include "platform/geometry/LayoutRect.h" 122 #include "platform/geometry/LayoutRect.h"
123 #include "public/platform/WebLayer.h" 123 #include "public/platform/WebLayer.h"
124 #include "weborigin/SchemeRegistry.h" 124 #include "platform/weborigin/SchemeRegistry.h"
125 #include "wtf/dtoa.h" 125 #include "wtf/dtoa.h"
126 #include "wtf/text/StringBuffer.h" 126 #include "wtf/text/StringBuffer.h"
127 127
128 namespace WebCore { 128 namespace WebCore {
129 129
130 static MockPagePopupDriver* s_pagePopupDriver = 0; 130 static MockPagePopupDriver* s_pagePopupDriver = 0;
131 131
132 using namespace HTMLNames; 132 using namespace HTMLNames;
133 133
134 class InspectorFrontendChannelDummy : public InspectorFrontendChannel { 134 class InspectorFrontendChannelDummy : public InspectorFrontendChannel {
(...skipping 2135 matching lines...) Expand 10 before | Expand all | Expand 10 after
2270 } 2270 }
2271 2271
2272 document->updateLayout(); 2272 document->updateLayout();
2273 2273
2274 RenderView* view = document->renderView(); 2274 RenderView* view = document->renderView();
2275 if (view->compositor()) 2275 if (view->compositor())
2276 view->compositor()->updateCompositingLayers(CompositingUpdateFinishAllDe ferredWork); 2276 view->compositor()->updateCompositingLayers(CompositingUpdateFinishAllDe ferredWork);
2277 } 2277 }
2278 2278
2279 } 2279 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698