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

Side by Side Diff: sky/engine/core/dom/Document.cpp

Issue 1239633002: Remove //sky/engine/platform/network (Closed) Base URL: git@github.com:domokit/mojo.git@master
Patch Set: rebase Created 5 years, 5 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
« no previous file with comments | « services/sky/viewer.cc ('k') | sky/engine/core/frame/FrameConsole.h » ('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 80 matching lines...) Expand 10 before | Expand all | Expand 10 after
91 #include "sky/engine/core/painting/PaintingTasks.h" 91 #include "sky/engine/core/painting/PaintingTasks.h"
92 #include "sky/engine/core/painting/Picture.h" 92 #include "sky/engine/core/painting/Picture.h"
93 #include "sky/engine/core/rendering/HitTestResult.h" 93 #include "sky/engine/core/rendering/HitTestResult.h"
94 #include "sky/engine/core/rendering/RenderView.h" 94 #include "sky/engine/core/rendering/RenderView.h"
95 #include "sky/engine/platform/DateComponents.h" 95 #include "sky/engine/platform/DateComponents.h"
96 #include "sky/engine/platform/EventDispatchForbiddenScope.h" 96 #include "sky/engine/platform/EventDispatchForbiddenScope.h"
97 #include "sky/engine/platform/Language.h" 97 #include "sky/engine/platform/Language.h"
98 #include "sky/engine/platform/Logging.h" 98 #include "sky/engine/platform/Logging.h"
99 #include "sky/engine/platform/ScriptForbiddenScope.h" 99 #include "sky/engine/platform/ScriptForbiddenScope.h"
100 #include "sky/engine/platform/TraceEvent.h" 100 #include "sky/engine/platform/TraceEvent.h"
101 #include "sky/engine/platform/network/HTTPParsers.h"
102 #include "sky/engine/platform/text/SegmentedString.h" 101 #include "sky/engine/platform/text/SegmentedString.h"
103 #include "sky/engine/public/platform/Platform.h" 102 #include "sky/engine/public/platform/Platform.h"
104 #include "sky/engine/wtf/CurrentTime.h" 103 #include "sky/engine/wtf/CurrentTime.h"
105 #include "sky/engine/wtf/DateMath.h" 104 #include "sky/engine/wtf/DateMath.h"
106 #include "sky/engine/wtf/HashFunctions.h" 105 #include "sky/engine/wtf/HashFunctions.h"
107 #include "sky/engine/wtf/MainThread.h" 106 #include "sky/engine/wtf/MainThread.h"
108 #include "sky/engine/wtf/StdLibExtras.h" 107 #include "sky/engine/wtf/StdLibExtras.h"
109 #include "sky/engine/wtf/TemporaryChange.h" 108 #include "sky/engine/wtf/TemporaryChange.h"
110 #include "sky/engine/wtf/text/StringBuffer.h" 109 #include "sky/engine/wtf/text/StringBuffer.h"
111 110
(...skipping 1864 matching lines...) Expand 10 before | Expand all | Expand 10 after
1976 using namespace blink; 1975 using namespace blink;
1977 void showLiveDocumentInstances() 1976 void showLiveDocumentInstances()
1978 { 1977 {
1979 WeakDocumentSet& set = liveDocumentSet(); 1978 WeakDocumentSet& set = liveDocumentSet();
1980 fprintf(stderr, "There are %u documents currently alive:\n", set.size()); 1979 fprintf(stderr, "There are %u documents currently alive:\n", set.size());
1981 for (WeakDocumentSet::const_iterator it = set.begin(); it != set.end(); ++it ) { 1980 for (WeakDocumentSet::const_iterator it = set.begin(); it != set.end(); ++it ) {
1982 fprintf(stderr, "- Document %p URL: %s\n", *it, (*it)->url().string().ut f8().data()); 1981 fprintf(stderr, "- Document %p URL: %s\n", *it, (*it)->url().string().ut f8().data());
1983 } 1982 }
1984 } 1983 }
1985 #endif 1984 #endif
OLDNEW
« no previous file with comments | « services/sky/viewer.cc ('k') | sky/engine/core/frame/FrameConsole.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698