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/public/web/WebFrameletClient.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
« no previous file with comments | « third_party/WebKit/public/web/WebFramelet.h ('k') | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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 WebFrameletClient_h
6 #define WebFrameletClient_h
7
8 #include "public/platform/WebFocusType.h"
9
10 namespace blink {
11
12 class WebInputEvent;
13 class WebFramelet;
14 struct WebRect;
15
16 class WebFrameletClient {
17 public:
18 virtual void didAttach(WebFramelet*) = 0;
19
20 virtual void didDetach() = 0;
21
22 virtual void forwardInputEvent(const WebInputEvent*) {}
23
24 virtual void frameRectsChanged(const WebRect&) {}
25
26 virtual void updateFocus(bool focused, WebFocusType type) {}
27
28 virtual void updateVisibility(bool visible) {}
29 };
30
31 } // namespace blink
32
33 #endif // WebFrameletClient_h
OLDNEW
« no previous file with comments | « third_party/WebKit/public/web/WebFramelet.h ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698