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

Side by Side Diff: third_party/WebKit/Source/core/html/HTMLObjectElement.cpp

Issue 2855523002: Deleted Widget/FrameViewBase (Closed)
Patch Set: removed FrameViewBase.h file now that dependent CL submitted Created 3 years, 7 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
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) 2000 Stefan Schimanski (1Stein@gmx.de) 4 * (C) 2000 Stefan Schimanski (1Stein@gmx.de)
5 * Copyright (C) 2004, 2005, 2006, 2007, 2008, 2009, 2011 Apple Inc. All rights 5 * Copyright (C) 2004, 2005, 2006, 2007, 2008, 2009, 2011 Apple Inc. All rights
6 * reserved. 6 * reserved.
7 * Copyright (C) 2008 Nokia Corporation and/or its subsidiary(-ies) 7 * Copyright (C) 2008 Nokia Corporation and/or its subsidiary(-ies)
8 * 8 *
9 * This library is free software; you can redistribute it and/or 9 * This library is free software; you can redistribute it and/or
10 * modify it under the terms of the GNU Library General Public 10 * modify it under the terms of the GNU Library General Public
(...skipping 23 matching lines...) Expand all
34 #include "core/dom/shadow/ShadowRoot.h" 34 #include "core/dom/shadow/ShadowRoot.h"
35 #include "core/frame/LocalFrame.h" 35 #include "core/frame/LocalFrame.h"
36 #include "core/frame/LocalFrameClient.h" 36 #include "core/frame/LocalFrameClient.h"
37 #include "core/frame/Settings.h" 37 #include "core/frame/Settings.h"
38 #include "core/html/HTMLImageLoader.h" 38 #include "core/html/HTMLImageLoader.h"
39 #include "core/html/HTMLMetaElement.h" 39 #include "core/html/HTMLMetaElement.h"
40 #include "core/html/HTMLParamElement.h" 40 #include "core/html/HTMLParamElement.h"
41 #include "core/html/parser/HTMLParserIdioms.h" 41 #include "core/html/parser/HTMLParserIdioms.h"
42 #include "core/layout/api/LayoutEmbeddedItem.h" 42 #include "core/layout/api/LayoutEmbeddedItem.h"
43 #include "core/plugins/PluginView.h" 43 #include "core/plugins/PluginView.h"
44 #include "platform/FrameViewBase.h"
45 #include "platform/network/mime/MIMETypeRegistry.h" 44 #include "platform/network/mime/MIMETypeRegistry.h"
46 45
47 namespace blink { 46 namespace blink {
48 47
49 using namespace HTMLNames; 48 using namespace HTMLNames;
50 49
51 inline HTMLObjectElement::HTMLObjectElement(Document& document, 50 inline HTMLObjectElement::HTMLObjectElement(Document& document,
52 bool created_by_parser) 51 bool created_by_parser)
53 : HTMLPlugInElement(objectTag, 52 : HTMLPlugInElement(objectTag,
54 document, 53 document,
(...skipping 410 matching lines...) Expand 10 before | Expand all | Expand 10 after
465 464
466 bool HTMLObjectElement::WillUseFallbackContentAtLayout() const { 465 bool HTMLObjectElement::WillUseFallbackContentAtLayout() const {
467 return !HasValidClassId() && HasFallbackContent(); 466 return !HasValidClassId() && HasFallbackContent();
468 } 467 }
469 468
470 void HTMLObjectElement::AssociateWith(HTMLFormElement* form) { 469 void HTMLObjectElement::AssociateWith(HTMLFormElement* form) {
471 AssociateByParser(form); 470 AssociateByParser(form);
472 }; 471 };
473 472
474 } // namespace blink 473 } // namespace blink
OLDNEW
« no previous file with comments | « third_party/WebKit/Source/core/frame/FrameView.cpp ('k') | third_party/WebKit/Source/core/html/HTMLPlugInElement.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698