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

Side by Side Diff: Source/core/loader/FrameLoader.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) 2006, 2007, 2008, 2009, 2010, 2011 Apple Inc. All rights reserv ed. 2 * Copyright (C) 2006, 2007, 2008, 2009, 2010, 2011 Apple Inc. All rights reserv ed.
3 * Copyright (C) 2008 Nokia Corporation and/or its subsidiary(-ies) 3 * Copyright (C) 2008 Nokia Corporation and/or its subsidiary(-ies)
4 * Copyright (C) 2008, 2009 Torch Mobile Inc. All rights reserved. (http://www.t orchmobile.com/) 4 * Copyright (C) 2008, 2009 Torch Mobile Inc. All rights reserved. (http://www.t orchmobile.com/)
5 * Copyright (C) 2008 Alp Toker <alp@atoker.com> 5 * Copyright (C) 2008 Alp Toker <alp@atoker.com>
6 * Copyright (C) Research In Motion Limited 2009. All rights reserved. 6 * Copyright (C) Research In Motion Limited 2009. All rights reserved.
7 * Copyright (C) 2011 Kris Jordan <krisjordan@gmail.com> 7 * Copyright (C) 2011 Kris Jordan <krisjordan@gmail.com>
8 * Copyright (C) 2011 Google Inc. All rights reserved. 8 * Copyright (C) 2011 Google Inc. All rights reserved.
9 * 9 *
10 * Redistribution and use in source and binary forms, with or without 10 * Redistribution and use in source and binary forms, with or without
(...skipping 61 matching lines...) Expand 10 before | Expand all | Expand 10 after
72 #include "core/page/BackForwardClient.h" 72 #include "core/page/BackForwardClient.h"
73 #include "core/page/Chrome.h" 73 #include "core/page/Chrome.h"
74 #include "core/page/ChromeClient.h" 74 #include "core/page/ChromeClient.h"
75 #include "core/page/CreateWindow.h" 75 #include "core/page/CreateWindow.h"
76 #include "core/page/EventHandler.h" 76 #include "core/page/EventHandler.h"
77 #include "core/page/FrameTree.h" 77 #include "core/page/FrameTree.h"
78 #include "core/page/Page.h" 78 #include "core/page/Page.h"
79 #include "core/page/Settings.h" 79 #include "core/page/Settings.h"
80 #include "core/page/WindowFeatures.h" 80 #include "core/page/WindowFeatures.h"
81 #include "core/page/scrolling/ScrollingCoordinator.h" 81 #include "core/page/scrolling/ScrollingCoordinator.h"
82 #include "core/platform/ScrollAnimator.h"
83 #include "core/xml/parser/XMLDocumentParser.h" 82 #include "core/xml/parser/XMLDocumentParser.h"
84 #include "modules/webdatabase/DatabaseManager.h" 83 #include "modules/webdatabase/DatabaseManager.h"
85 #include "platform/Logging.h" 84 #include "platform/Logging.h"
86 #include "platform/UserGestureIndicator.h" 85 #include "platform/UserGestureIndicator.h"
87 #include "platform/geometry/FloatRect.h" 86 #include "platform/geometry/FloatRect.h"
88 #include "platform/network/HTTPParsers.h" 87 #include "platform/network/HTTPParsers.h"
89 #include "platform/network/ResourceRequest.h" 88 #include "platform/network/ResourceRequest.h"
89 #include "platform/scroll/ScrollAnimator.h"
90 #include "platform/weborigin/SecurityOrigin.h" 90 #include "platform/weborigin/SecurityOrigin.h"
91 #include "platform/weborigin/SecurityPolicy.h" 91 #include "platform/weborigin/SecurityPolicy.h"
92 #include "wtf/TemporaryChange.h" 92 #include "wtf/TemporaryChange.h"
93 #include "wtf/text/CString.h" 93 #include "wtf/text/CString.h"
94 #include "wtf/text/WTFString.h" 94 #include "wtf/text/WTFString.h"
95 95
96 namespace WebCore { 96 namespace WebCore {
97 97
98 using namespace HTMLNames; 98 using namespace HTMLNames;
99 99
(...skipping 1465 matching lines...) Expand 10 before | Expand all | Expand 10 after
1565 { 1565 {
1566 SandboxFlags flags = m_forcedSandboxFlags; 1566 SandboxFlags flags = m_forcedSandboxFlags;
1567 if (Frame* parentFrame = m_frame->tree().parent()) 1567 if (Frame* parentFrame = m_frame->tree().parent())
1568 flags |= parentFrame->document()->sandboxFlags(); 1568 flags |= parentFrame->document()->sandboxFlags();
1569 if (HTMLFrameOwnerElement* ownerElement = m_frame->ownerElement()) 1569 if (HTMLFrameOwnerElement* ownerElement = m_frame->ownerElement())
1570 flags |= ownerElement->sandboxFlags(); 1570 flags |= ownerElement->sandboxFlags();
1571 return flags; 1571 return flags;
1572 } 1572 }
1573 1573
1574 } // namespace WebCore 1574 } // namespace WebCore
OLDNEW
« no previous file with comments | « Source/core/inspector/InspectorTimelineAgent.cpp ('k') | Source/core/make_core_derived_sources.xml » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698