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

Side by Side Diff: Source/core/dom/Document.cpp

Issue 25195003: Prepare to move core/platform/text into blink_platform.dll (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: re-attempt upload Created 7 years, 2 months 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
« no previous file with comments | « Source/core/css/CSSRule.cpp ('k') | Source/core/dom/Position.cpp » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 /* 1 /*
2 * Copyright (C) 1999 Lars Knoll (knoll@kde.org) 2 * Copyright (C) 1999 Lars Knoll (knoll@kde.org)
3 * (C) 1999 Antti Koivisto (koivisto@kde.org) 3 * (C) 1999 Antti Koivisto (koivisto@kde.org)
4 * (C) 2001 Dirk Mueller (mueller@kde.org) 4 * (C) 2001 Dirk Mueller (mueller@kde.org)
5 * (C) 2006 Alexey Proskuryakov (ap@webkit.org) 5 * (C) 2006 Alexey Proskuryakov (ap@webkit.org)
6 * Copyright (C) 2004, 2005, 2006, 2007, 2008, 2009, 2011, 2012 Apple Inc. All r ights reserved. 6 * Copyright (C) 2004, 2005, 2006, 2007, 2008, 2009, 2011, 2012 Apple Inc. All r ights reserved.
7 * Copyright (C) 2008, 2009 Torch Mobile Inc. All rights reserved. (http://www.t orchmobile.com/) 7 * Copyright (C) 2008, 2009 Torch Mobile Inc. All rights reserved. (http://www.t orchmobile.com/)
8 * Copyright (C) 2008, 2009, 2011, 2012 Google Inc. All rights reserved. 8 * Copyright (C) 2008, 2009, 2011, 2012 Google Inc. All rights reserved.
9 * Copyright (C) 2010 Nokia Corporation and/or its subsidiary(-ies) 9 * Copyright (C) 2010 Nokia Corporation and/or its subsidiary(-ies)
10 * Copyright (C) Research In Motion Limited 2010-2011. All rights reserved. 10 * Copyright (C) Research In Motion Limited 2010-2011. All rights reserved.
(...skipping 136 matching lines...) Expand 10 before | Expand all | Expand 10 after
147 #include "core/page/FrameTree.h" 147 #include "core/page/FrameTree.h"
148 #include "core/page/FrameView.h" 148 #include "core/page/FrameView.h"
149 #include "core/page/History.h" 149 #include "core/page/History.h"
150 #include "core/page/MouseEventWithHitTestResults.h" 150 #include "core/page/MouseEventWithHitTestResults.h"
151 #include "core/page/Page.h" 151 #include "core/page/Page.h"
152 #include "core/page/PageConsole.h" 152 #include "core/page/PageConsole.h"
153 #include "core/page/PointerLockController.h" 153 #include "core/page/PointerLockController.h"
154 #include "core/page/Settings.h" 154 #include "core/page/Settings.h"
155 #include "core/page/animation/AnimationController.h" 155 #include "core/page/animation/AnimationController.h"
156 #include "core/page/scrolling/ScrollingCoordinator.h" 156 #include "core/page/scrolling/ScrollingCoordinator.h"
157 #include "core/platform/DateComponents.h" 157 #include "platform/DateComponents.h"
158 #include "core/platform/Language.h" 158 #include "platform/Language.h"
159 #include "core/platform/ScrollbarTheme.h" 159 #include "core/platform/ScrollbarTheme.h"
160 #include "core/platform/Timer.h" 160 #include "core/platform/Timer.h"
161 #include "core/platform/chromium/TraceEvent.h" 161 #include "core/platform/chromium/TraceEvent.h"
162 #include "core/platform/network/HTTPParsers.h" 162 #include "core/platform/network/HTTPParsers.h"
163 #include "core/platform/text/PlatformLocale.h" 163 #include "core/platform/text/PlatformLocale.h"
164 #include "core/platform/text/SegmentedString.h" 164 #include "core/platform/text/SegmentedString.h"
165 #include "core/rendering/HitTestRequest.h" 165 #include "core/rendering/HitTestRequest.h"
166 #include "core/rendering/HitTestResult.h" 166 #include "core/rendering/HitTestResult.h"
167 #include "core/rendering/RenderView.h" 167 #include "core/rendering/RenderView.h"
168 #include "core/rendering/RenderWidget.h" 168 #include "core/rendering/RenderWidget.h"
(...skipping 5268 matching lines...) Expand 10 before | Expand all | Expand 10 after
5437 { 5437 {
5438 return DocumentLifecycleNotifier::create(this); 5438 return DocumentLifecycleNotifier::create(this);
5439 } 5439 }
5440 5440
5441 DocumentLifecycleNotifier* Document::lifecycleNotifier() 5441 DocumentLifecycleNotifier* Document::lifecycleNotifier()
5442 { 5442 {
5443 return static_cast<DocumentLifecycleNotifier*>(ScriptExecutionContext::lifec ycleNotifier()); 5443 return static_cast<DocumentLifecycleNotifier*>(ScriptExecutionContext::lifec ycleNotifier());
5444 } 5444 }
5445 5445
5446 } // namespace WebCore 5446 } // namespace WebCore
OLDNEW
« no previous file with comments | « Source/core/css/CSSRule.cpp ('k') | Source/core/dom/Position.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698