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

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

Issue 699023002: Remove <meta> (Closed) Base URL: git@github.com:domokit/mojo.git@master
Patch Set: Created 6 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
« no previous file with comments | « sky/engine/core/core.gni ('k') | sky/engine/core/html/HTMLMetaElement.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 83 matching lines...) Expand 10 before | Expand all | Expand 10 after
94 #include "core/frame/FrameConsole.h" 94 #include "core/frame/FrameConsole.h"
95 #include "core/frame/FrameHost.h" 95 #include "core/frame/FrameHost.h"
96 #include "core/frame/FrameView.h" 96 #include "core/frame/FrameView.h"
97 #include "core/frame/History.h" 97 #include "core/frame/History.h"
98 #include "core/frame/LocalDOMWindow.h" 98 #include "core/frame/LocalDOMWindow.h"
99 #include "core/frame/LocalFrame.h" 99 #include "core/frame/LocalFrame.h"
100 #include "core/frame/Settings.h" 100 #include "core/frame/Settings.h"
101 #include "core/html/HTMLAnchorElement.h" 101 #include "core/html/HTMLAnchorElement.h"
102 #include "core/html/HTMLCanvasElement.h" 102 #include "core/html/HTMLCanvasElement.h"
103 #include "core/html/HTMLDocument.h" 103 #include "core/html/HTMLDocument.h"
104 #include "core/html/HTMLMetaElement.h"
105 #include "core/html/HTMLScriptElement.h" 104 #include "core/html/HTMLScriptElement.h"
106 #include "core/html/HTMLStyleElement.h" 105 #include "core/html/HTMLStyleElement.h"
107 #include "core/html/HTMLTemplateElement.h" 106 #include "core/html/HTMLTemplateElement.h"
108 #include "core/html/HTMLTitleElement.h" 107 #include "core/html/HTMLTitleElement.h"
109 #include "core/html/canvas/CanvasRenderingContext.h" 108 #include "core/html/canvas/CanvasRenderingContext.h"
110 #include "core/html/canvas/CanvasRenderingContext2D.h" 109 #include "core/html/canvas/CanvasRenderingContext2D.h"
111 #include "core/html/canvas/WebGLRenderingContext.h" 110 #include "core/html/canvas/WebGLRenderingContext.h"
112 #include "core/html/imports/HTMLImportChild.h" 111 #include "core/html/imports/HTMLImportChild.h"
113 #include "core/html/imports/HTMLImportTreeRoot.h" 112 #include "core/html/imports/HTMLImportTreeRoot.h"
114 #include "core/html/imports/HTMLImportLoader.h" 113 #include "core/html/imports/HTMLImportLoader.h"
(...skipping 3011 matching lines...) Expand 10 before | Expand all | Expand 10 after
3126 using namespace blink; 3125 using namespace blink;
3127 void showLiveDocumentInstances() 3126 void showLiveDocumentInstances()
3128 { 3127 {
3129 WeakDocumentSet& set = liveDocumentSet(); 3128 WeakDocumentSet& set = liveDocumentSet();
3130 fprintf(stderr, "There are %u documents currently alive:\n", set.size()); 3129 fprintf(stderr, "There are %u documents currently alive:\n", set.size());
3131 for (WeakDocumentSet::const_iterator it = set.begin(); it != set.end(); ++it ) { 3130 for (WeakDocumentSet::const_iterator it = set.begin(); it != set.end(); ++it ) {
3132 fprintf(stderr, "- Document %p URL: %s\n", *it, (*it)->url().string().ut f8().data()); 3131 fprintf(stderr, "- Document %p URL: %s\n", *it, (*it)->url().string().ut f8().data());
3133 } 3132 }
3134 } 3133 }
3135 #endif 3134 #endif
OLDNEW
« no previous file with comments | « sky/engine/core/core.gni ('k') | sky/engine/core/html/HTMLMetaElement.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698