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

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

Issue 2008843004: Remove unnecessary inclusions of LayoutObject-derived headers in core/html/ (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 4 years, 6 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) 2010 Nokia Corporation and/or its subsidiary(-ies). 2 * Copyright (C) 2010 Nokia Corporation and/or its subsidiary(-ies).
3 * Copyright (C) 1999 Lars Knoll (knoll@kde.org) 3 * Copyright (C) 1999 Lars Knoll (knoll@kde.org)
4 * (C) 1999 Antti Koivisto (koivisto@kde.org) 4 * (C) 1999 Antti Koivisto (koivisto@kde.org)
5 * (C) 2001 Dirk Mueller (mueller@kde.org) 5 * (C) 2001 Dirk Mueller (mueller@kde.org)
6 * Copyright (C) 2004, 2005, 2006, 2007, 2009, 2010, 2011 Apple Inc. All rights reserved. 6 * Copyright (C) 2004, 2005, 2006, 2007, 2009, 2010, 2011 Apple Inc. All rights reserved.
7 * (C) 2006 Alexey Proskuryakov (ap@nypop.com) 7 * (C) 2006 Alexey Proskuryakov (ap@nypop.com)
8 * Copyright (C) 2010 Google Inc. All rights reserved. 8 * Copyright (C) 2010 Google Inc. All rights reserved.
9 * Copyright (C) 2009 Torch Mobile Inc. All rights reserved. (http://www.torchmo bile.com/) 9 * Copyright (C) 2009 Torch Mobile Inc. All rights reserved. (http://www.torchmo bile.com/)
10 * 10 *
(...skipping 43 matching lines...) Expand 10 before | Expand all | Expand 10 after
54 #include "core/html/HTMLFormElement.h" 54 #include "core/html/HTMLFormElement.h"
55 #include "core/html/HTMLOptGroupElement.h" 55 #include "core/html/HTMLOptGroupElement.h"
56 #include "core/html/HTMLOptionElement.h" 56 #include "core/html/HTMLOptionElement.h"
57 #include "core/html/forms/FormController.h" 57 #include "core/html/forms/FormController.h"
58 #include "core/input/EventHandler.h" 58 #include "core/input/EventHandler.h"
59 #include "core/inspector/ConsoleMessage.h" 59 #include "core/inspector/ConsoleMessage.h"
60 #include "core/layout/HitTestRequest.h" 60 #include "core/layout/HitTestRequest.h"
61 #include "core/layout/HitTestResult.h" 61 #include "core/layout/HitTestResult.h"
62 #include "core/layout/LayoutListBox.h" 62 #include "core/layout/LayoutListBox.h"
63 #include "core/layout/LayoutMenuList.h" 63 #include "core/layout/LayoutMenuList.h"
64 #include "core/layout/LayoutText.h"
65 #include "core/layout/LayoutTheme.h" 64 #include "core/layout/LayoutTheme.h"
66 #include "core/page/AutoscrollController.h" 65 #include "core/page/AutoscrollController.h"
67 #include "core/page/ChromeClient.h" 66 #include "core/page/ChromeClient.h"
68 #include "core/page/Page.h" 67 #include "core/page/Page.h"
69 #include "core/page/SpatialNavigation.h" 68 #include "core/page/SpatialNavigation.h"
70 #include "platform/PlatformMouseEvent.h" 69 #include "platform/PlatformMouseEvent.h"
71 #include "platform/PopupMenu.h" 70 #include "platform/PopupMenu.h"
72 #include "platform/TraceEvent.h" 71 #include "platform/TraceEvent.h"
73 #include "platform/text/PlatformLocale.h" 72 #include "platform/text/PlatformLocale.h"
74 73
(...skipping 1995 matching lines...) Expand 10 before | Expand all | Expand 10 after
2070 } 2069 }
2071 2070
2072 void HTMLSelectElement::didMutateSubtree() 2071 void HTMLSelectElement::didMutateSubtree()
2073 { 2072 {
2074 DCHECK(popupIsVisible()); 2073 DCHECK(popupIsVisible());
2075 DCHECK(m_popup); 2074 DCHECK(m_popup);
2076 m_popup->updateFromElement(PopupMenu::ByDOMChange); 2075 m_popup->updateFromElement(PopupMenu::ByDOMChange);
2077 } 2076 }
2078 2077
2079 } // namespace blink 2078 } // namespace blink
OLDNEW
« no previous file with comments | « third_party/WebKit/Source/core/html/HTMLObjectElement.cpp ('k') | third_party/WebKit/Source/core/html/HTMLTableElement.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698