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

Side by Side Diff: third_party/WebKit/Source/core/frame/FrameletClient.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, 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
(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 FrameletClient_h
6 #define FrameletClient_h
7
8 #include "platform/heap/Handle.h"
9 #include "public/platform/WebFocusType.h"
10
11 namespace blink {
12
13 class Event;
14 class IntRect;
15
16 class FrameletClient {
17 public:
18 virtual ~FrameletClient() {}
19
20 virtual void didAttach() = 0;
21 virtual void didDetach() = 0;
22 virtual void forwardInputEvent(Event*) = 0;
23 virtual void frameRectsChanged(const IntRect& frameRect) = 0;
24 virtual void updateFocus(bool, WebFocusType) = 0;
25 virtual void updateVisibility(bool) = 0;
26
27 DEFINE_INLINE_VIRTUAL_TRACE() {}
28 };
29
30 } // namespace blink
31
32 #endif // FrameletClient_h
OLDNEW
« no previous file with comments | « third_party/WebKit/Source/core/frame/Framelet.cpp ('k') | third_party/WebKit/Source/core/frame/FrameletView.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698