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

Side by Side Diff: content/browser/web_contents/web_contents_node.h

Issue 972313002: Make <webview> use out-of-process iframe architecture. (Closed) Base URL: ssh://saopaulo.wat/mnt/dev/shared/src@testoopif2z-better-chrome
Patch Set: some review comments addressed Created 5 years, 8 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 #ifndef CONTENT_BROWSER_WEB_CONTENTS_WEB_CONTENTS_NODE_H_
2 #define CONTENT_BROWSER_WEB_CONTENTS_WEB_CONTENTS_NODE_H_
3
4 namespace content {
5
6 class WebContentsImpl;
7
8 class WebContentsNode {
Charlie Reis 2015/04/08 23:42:11 No one outside WebContentsImpl seems to need this.
lazyboy 2015/04/14 01:38:04 Done.
9 public:
10 WebContentsNode();
11 ~WebContentsNode();
12
13 void set_parent_web_contents(WebContentsImpl* parent_web_contents) {
14 parent_web_contents_ = parent_web_contents;
15 }
16 WebContentsImpl* parent_web_contents() {
17 return parent_web_contents_;
18 }
19
20 private:
21 WebContentsImpl* parent_web_contents_;
22 };
23
24 } // namespace content
25
26 #endif // CONTENT_BROWSER_WEB_CONTENTS_WEB_CONTENTS_NODE_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698