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

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

Issue 2727913005: Rename FrameView fields and methods *Widget* to ...FrameViewBase... (Closed)
Patch Set: Rename FrameView fields and methods *Widget* to ...FrameViewBase... Created 3 years, 9 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) 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 73 matching lines...) Expand 10 before | Expand all | Expand 10 after
84 // FrameViewBase methods 84 // FrameViewBase methods
85 void setFrameRect(const IntRect&) override; 85 void setFrameRect(const IntRect&) override;
86 void paint(GraphicsContext&, const CullRect&) const override; 86 void paint(GraphicsContext&, const CullRect&) const override;
87 void invalidateRect(const IntRect&) override; 87 void invalidateRect(const IntRect&) override;
88 void setFocused(bool, WebFocusType) override; 88 void setFocused(bool, WebFocusType) override;
89 void show() override; 89 void show() override;
90 void hide() override; 90 void hide() override;
91 void handleEvent(Event*) override; 91 void handleEvent(Event*) override;
92 void frameRectsChanged() override; 92 void frameRectsChanged() override;
93 void setParentVisible(bool) override; 93 void setParentVisible(bool) override;
94 void widgetGeometryMayHaveChanged() override; 94 void geometryMayHaveChanged() override;
95 bool isPluginContainer() const override { return true; } 95 bool isPluginContainer() const override { return true; }
96 void eventListenersRemoved() override; 96 void eventListenersRemoved() override;
97 97
98 // WebPluginContainer methods 98 // WebPluginContainer methods
99 WebElement element() override; 99 WebElement element() override;
100 WebDocument document() override; 100 WebDocument document() override;
101 void dispatchProgressEvent(const WebString& type, 101 void dispatchProgressEvent(const WebString& type,
102 bool lengthComputable, 102 bool lengthComputable,
103 unsigned long long loaded, 103 unsigned long long loaded,
104 unsigned long long total, 104 unsigned long long total,
(...skipping 123 matching lines...) Expand 10 before | Expand all | Expand 10 after
228 // WebPluginContainerImpl is the only subclass of WebPluginContainer. 228 // WebPluginContainerImpl is the only subclass of WebPluginContainer.
229 DEFINE_TYPE_CASTS(WebPluginContainerImpl, 229 DEFINE_TYPE_CASTS(WebPluginContainerImpl,
230 WebPluginContainer, 230 WebPluginContainer,
231 container, 231 container,
232 true, 232 true,
233 true); 233 true);
234 234
235 } // namespace blink 235 } // namespace blink
236 236
237 #endif 237 #endif
OLDNEW
« no previous file with comments | « third_party/WebKit/Source/platform/FrameViewBase.h ('k') | third_party/WebKit/Source/web/WebPluginContainerImpl.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698