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

Side by Side Diff: third_party/WebKit/public/web/WebFramelet.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 WebFramelet_h
6 #define WebFramelet_h
7
8 #include "public/platform/WebCommon.h"
9
10 namespace blink {
11
12 class WebFrameletClient;
13 class WebLayer;
14
15 class WebFramelet {
16 public:
17 virtual ~WebFramelet() {}
18
19 BLINK_EXPORT static WebFramelet* create(WebFrameletClient*);
20 virtual void close() = 0;
21
22 virtual void setWebLayer(WebLayer*) = 0;
23
24 virtual WebFrameletClient* client() = 0;
25 };
26
27 } // namespace blink
28
29 #endif // WebFramelet_h
OLDNEW
« no previous file with comments | « third_party/WebKit/public/web/WebFrameClient.h ('k') | third_party/WebKit/public/web/WebFrameletClient.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698