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

Side by Side Diff: sky/engine/core/loader/FrameLoader.cpp

Issue 654693004: Remove meta viewport and @viewport CSS rules. (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
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 22 matching lines...) Expand all
33 */ 33 */
34 34
35 #include "config.h" 35 #include "config.h"
36 #include "core/loader/FrameLoader.h" 36 #include "core/loader/FrameLoader.h"
37 37
38 #include "bindings/core/v8/DOMWrapperWorld.h" 38 #include "bindings/core/v8/DOMWrapperWorld.h"
39 #include "bindings/core/v8/ScriptController.h" 39 #include "bindings/core/v8/ScriptController.h"
40 #include "bindings/core/v8/SerializedScriptValue.h" 40 #include "bindings/core/v8/SerializedScriptValue.h"
41 #include "core/dom/Document.h" 41 #include "core/dom/Document.h"
42 #include "core/dom/Element.h" 42 #include "core/dom/Element.h"
43 #include "core/dom/ViewportDescription.h"
44 #include "core/editing/Editor.h" 43 #include "core/editing/Editor.h"
45 #include "core/editing/UndoStack.h" 44 #include "core/editing/UndoStack.h"
46 #include "core/events/PageTransitionEvent.h" 45 #include "core/events/PageTransitionEvent.h"
47 #include "core/fetch/FetchContext.h" 46 #include "core/fetch/FetchContext.h"
48 #include "core/fetch/ResourceFetcher.h" 47 #include "core/fetch/ResourceFetcher.h"
49 #include "core/fetch/ResourceLoader.h" 48 #include "core/fetch/ResourceLoader.h"
50 #include "core/frame/LocalDOMWindow.h" 49 #include "core/frame/LocalDOMWindow.h"
51 #include "core/frame/FrameHost.h" 50 #include "core/frame/FrameHost.h"
52 #include "core/frame/FrameView.h" 51 #include "core/frame/FrameView.h"
53 #include "core/frame/LocalFrame.h" 52 #include "core/frame/LocalFrame.h"
(...skipping 115 matching lines...) Expand 10 before | Expand all | Expand 10 after
169 // still parsing. Failure to do so can cause a world leak. 168 // still parsing. Failure to do so can cause a world leak.
170 if (m_frame->document()->parsing()) 169 if (m_frame->document()->parsing())
171 stopLoading(); 170 stopLoading();
172 171
173 m_frame->document()->fetcher()->stopFetching(); 172 m_frame->document()->fetcher()->stopFetching();
174 173
175 m_inStopAllLoaders = false; 174 m_inStopAllLoaders = false;
176 } 175 }
177 176
178 } // namespace blink 177 } // namespace blink
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698