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

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

Issue 1602663003: Framelet Prototype 2016 using Mojo IPC Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Rebased. Disabled oilpan Created 4 years, 10 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
(Empty)
1 // Copyright 2015 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file.
4
5 #ifndef FrameletClientImpl_h
6 #define FrameletClientImpl_h
7
8 #include "core/frame/FrameletClient.h"
9
10 #include "platform/heap/Handle.h"
11
12 namespace blink {
13 class WebFrameletImpl;
14
15 class FrameletClientImpl final : public FrameletClient {
16 public:
17 static PassOwnPtrWillBeRawPtr<FrameletClientImpl> create(WebFrameletImpl*);
18
19 DECLARE_VIRTUAL_TRACE();
20
21 // FrameletClient overrides:
22 void didAttach() override;
23 void didDetach() override;
24 void forwardInputEvent(Event*) override;
25 void frameRectsChanged(const IntRect& frameRect) override;
26 void updateFocus(bool, WebFocusType) override;
27 void updateVisibility(bool) override;
28
29 WebFrameletImpl* webFramelet() const { return m_webFramelet; }
30
31 private:
32 explicit FrameletClientImpl(WebFrameletImpl*);
33
34 RawPtrWillBeMember<WebFrameletImpl> m_webFramelet;
35 };
36
37 } // namespace blink
38
39 #endif // FrameletClientImpl_h
OLDNEW
« no previous file with comments | « third_party/WebKit/Source/web/FrameLoaderClientImpl.cpp ('k') | third_party/WebKit/Source/web/FrameletClientImpl.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698