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

Side by Side Diff: third_party/WebKit/Source/web/WebLocalFrameImpl.cpp

Issue 1462163002: Move uncoupled code out of skia/ext/platform_device.h (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@no-draft-metadata
Patch Set: Mac compile fixes Created 5 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 200 matching lines...) Expand 10 before | Expand all | Expand 10 after
211 #include "public/web/WebNode.h" 211 #include "public/web/WebNode.h"
212 #include "public/web/WebPerformance.h" 212 #include "public/web/WebPerformance.h"
213 #include "public/web/WebPlugin.h" 213 #include "public/web/WebPlugin.h"
214 #include "public/web/WebPrintParams.h" 214 #include "public/web/WebPrintParams.h"
215 #include "public/web/WebPrintPresetOptions.h" 215 #include "public/web/WebPrintPresetOptions.h"
216 #include "public/web/WebRange.h" 216 #include "public/web/WebRange.h"
217 #include "public/web/WebScriptSource.h" 217 #include "public/web/WebScriptSource.h"
218 #include "public/web/WebSerializedScriptValue.h" 218 #include "public/web/WebSerializedScriptValue.h"
219 #include "public/web/WebTestInterfaceFactory.h" 219 #include "public/web/WebTestInterfaceFactory.h"
220 #include "public/web/WebTreeScopeType.h" 220 #include "public/web/WebTreeScopeType.h"
221 #include "skia/ext/platform_device.h" 221 #include "skia/ext/platform_canvas.h"
222 #include "web/AssociatedURLLoader.h" 222 #include "web/AssociatedURLLoader.h"
223 #include "web/AudioOutputDeviceClientImpl.h" 223 #include "web/AudioOutputDeviceClientImpl.h"
224 #include "web/CompositionUnderlineVectorBuilder.h" 224 #include "web/CompositionUnderlineVectorBuilder.h"
225 #include "web/FindInPageCoordinates.h" 225 #include "web/FindInPageCoordinates.h"
226 #include "web/GeolocationClientProxy.h" 226 #include "web/GeolocationClientProxy.h"
227 #include "web/LocalFileSystemClient.h" 227 #include "web/LocalFileSystemClient.h"
228 #include "web/MIDIClientProxy.h" 228 #include "web/MIDIClientProxy.h"
229 #include "web/NavigatorContentUtilsClientImpl.h" 229 #include "web/NavigatorContentUtilsClientImpl.h"
230 #include "web/NotificationPermissionClientImpl.h" 230 #include "web/NotificationPermissionClientImpl.h"
231 #include "web/RemoteBridgeFrameOwner.h" 231 #include "web/RemoteBridgeFrameOwner.h"
(...skipping 1980 matching lines...) Expand 10 before | Expand all | Expand 10 after
2212 } 2212 }
2213 2213
2214 WebSandboxFlags WebLocalFrameImpl::effectiveSandboxFlags() const 2214 WebSandboxFlags WebLocalFrameImpl::effectiveSandboxFlags() const
2215 { 2215 {
2216 if (!frame()) 2216 if (!frame())
2217 return WebSandboxFlags::None; 2217 return WebSandboxFlags::None;
2218 return static_cast<WebSandboxFlags>(frame()->loader().effectiveSandboxFlags( )); 2218 return static_cast<WebSandboxFlags>(frame()->loader().effectiveSandboxFlags( ));
2219 } 2219 }
2220 2220
2221 } // namespace blink 2221 } // namespace blink
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698