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

Side by Side Diff: third_party/WebKit/Source/web/WebPluginContainerImpl.h

Issue 1513573013: Don't call LayoutPart::widgetPositionsUpdated unnecessarily. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 5 years 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) 2009 Google Inc. All rights reserved. 2 * Copyright (C) 2009 Google Inc. All rights reserved.
3 * Copyright (C) 2014 Opera Software ASA. All rights reserved. 3 * Copyright (C) 2014 Opera Software ASA. All rights reserved.
4 * 4 *
5 * Redistribution and use in source and binary forms, with or without 5 * Redistribution and use in source and binary forms, with or without
6 * modification, are permitted provided that the following conditions are 6 * modification, are permitted provided that the following conditions are
7 * met: 7 * met:
8 * 8 *
9 * * Redistributions of source code must retain the above copyright 9 * * Redistributions of source code must retain the above copyright
10 * notice, this list of conditions and the following disclaimer. 10 * notice, this list of conditions and the following disclaimer.
(...skipping 72 matching lines...) Expand 10 before | Expand all | Expand 10 after
83 void setFrameRect(const IntRect&) override; 83 void setFrameRect(const IntRect&) override;
84 void paint(GraphicsContext&, const CullRect&) const override; 84 void paint(GraphicsContext&, const CullRect&) const override;
85 void invalidateRect(const IntRect&) override; 85 void invalidateRect(const IntRect&) override;
86 void setFocus(bool, WebFocusType) override; 86 void setFocus(bool, WebFocusType) override;
87 void show() override; 87 void show() override;
88 void hide() override; 88 void hide() override;
89 void handleEvent(Event*) override; 89 void handleEvent(Event*) override;
90 void frameRectsChanged() override; 90 void frameRectsChanged() override;
91 void setParentVisible(bool) override; 91 void setParentVisible(bool) override;
92 void setParent(Widget*) override; 92 void setParent(Widget*) override;
93 void widgetPositionsUpdated() override; 93 void widgetGeometryMayHaveChanged() override;
94 bool isPluginContainer() const override { return true; } 94 bool isPluginContainer() const override { return true; }
95 void eventListenersRemoved() override; 95 void eventListenersRemoved() override;
96 96
97 // WebPluginContainer methods 97 // WebPluginContainer methods
98 WebElement element() override; 98 WebElement element() override;
99 void dispatchProgressEvent(const WebString& type, bool lengthComputable, uns igned long long loaded, unsigned long long total, const WebString& url) override ; 99 void dispatchProgressEvent(const WebString& type, bool lengthComputable, uns igned long long loaded, unsigned long long total, const WebString& url) override ;
100 void invalidate() override; 100 void invalidate() override;
101 void invalidateRect(const WebRect&) override; 101 void invalidateRect(const WebRect&) override;
102 void scrollRect(const WebRect&) override; 102 void scrollRect(const WebRect&) override;
103 void setNeedsLayout() override; 103 void setNeedsLayout() override;
(...skipping 110 matching lines...) Expand 10 before | Expand all | Expand 10 after
214 }; 214 };
215 215
216 DEFINE_TYPE_CASTS(WebPluginContainerImpl, Widget, widget, widget->isPluginContai ner(), widget.isPluginContainer()); 216 DEFINE_TYPE_CASTS(WebPluginContainerImpl, Widget, widget, widget->isPluginContai ner(), widget.isPluginContainer());
217 // Unlike Widget, we need not worry about object type for container. 217 // Unlike Widget, we need not worry about object type for container.
218 // WebPluginContainerImpl is the only subclass of WebPluginContainer. 218 // WebPluginContainerImpl is the only subclass of WebPluginContainer.
219 DEFINE_TYPE_CASTS(WebPluginContainerImpl, WebPluginContainer, container, true, t rue); 219 DEFINE_TYPE_CASTS(WebPluginContainerImpl, WebPluginContainer, container, true, t rue);
220 220
221 } // namespace blink 221 } // namespace blink
222 222
223 #endif 223 #endif
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698