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

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

Issue 2431473003: Intersection Observer support for OOPIF (Closed)
Patch Set: dcheng comments addressed Created 3 years, 11 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) 2014 Google Inc. All rights reserved. 2 * Copyright (C) 2014 Google Inc. All rights reserved.
3 * 3 *
4 * Redistribution and use in source and binary forms, with or without 4 * Redistribution and use in source and binary forms, with or without
5 * modification, are permitted provided that the following conditions are 5 * modification, are permitted provided that the following conditions are
6 * met: 6 * met:
7 * 7 *
8 * * Redistributions of source code must retain the above copyright 8 * * Redistributions of source code must retain the above copyright
9 * notice, this list of conditions and the following disclaimer. 9 * notice, this list of conditions and the following disclaimer.
10 * * Redistributions in binary form must reproduce the above 10 * * Redistributions in binary form must reproduce the above
(...skipping 98 matching lines...) Expand 10 before | Expand all | Expand 10 after
109 bool isSelectionAnchorFirst() const override; 109 bool isSelectionAnchorFirst() const override;
110 WebRange caretOrSelectionRange() override; 110 WebRange caretOrSelectionRange() override;
111 void setTextDirection(WebTextDirection) override; 111 void setTextDirection(WebTextDirection) override;
112 bool isAcceleratedCompositingActive() const override; 112 bool isAcceleratedCompositingActive() const override;
113 void willCloseLayerTreeView() override; 113 void willCloseLayerTreeView() override;
114 void didAcquirePointerLock() override; 114 void didAcquirePointerLock() override;
115 void didNotAcquirePointerLock() override; 115 void didNotAcquirePointerLock() override;
116 void didLosePointerLock() override; 116 void didLosePointerLock() override;
117 bool getCompositionCharacterBounds(WebVector<WebRect>& bounds) override; 117 bool getCompositionCharacterBounds(WebVector<WebRect>& bounds) override;
118 void applyReplacementRange(const WebRange&) override; 118 void applyReplacementRange(const WebRange&) override;
119 void setRemoteViewportIntersection(const WebRect&) override;
119 120
120 // WebFrameWidget implementation. 121 // WebFrameWidget implementation.
121 WebLocalFrameImpl* localRoot() const override { return m_localRoot; } 122 WebLocalFrameImpl* localRoot() const override { return m_localRoot; }
122 void setVisibilityState(WebPageVisibilityState) override; 123 void setVisibilityState(WebPageVisibilityState) override;
123 bool isTransparent() const override; 124 bool isTransparent() const override;
124 void setIsTransparent(bool) override; 125 void setIsTransparent(bool) override;
125 void setBaseBackgroundColor(WebColor) override; 126 void setBaseBackgroundColor(WebColor) override;
126 WebInputMethodControllerImpl* getActiveWebInputMethodController() 127 WebInputMethodControllerImpl* getActiveWebInputMethodController()
127 const override; 128 const override;
128 129
(...skipping 109 matching lines...) Expand 10 before | Expand all | Expand 10 after
238 239
239 DEFINE_TYPE_CASTS(WebFrameWidgetImpl, 240 DEFINE_TYPE_CASTS(WebFrameWidgetImpl,
240 WebFrameWidgetBase, 241 WebFrameWidgetBase,
241 widget, 242 widget,
242 widget->forSubframe(), 243 widget->forSubframe(),
243 widget.forSubframe()); 244 widget.forSubframe());
244 245
245 } // namespace blink 246 } // namespace blink
246 247
247 #endif 248 #endif
OLDNEW
« no previous file with comments | « third_party/WebKit/Source/web/RemoteFrameClientImpl.cpp ('k') | third_party/WebKit/Source/web/WebFrameWidgetImpl.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698