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

Side by Side Diff: components/html_viewer/html_document.h

Issue 1141283002: Replicate whether a frame is in a document or shadow tree. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Fix typo Created 5 years, 7 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
1 // Copyright 2014 The Chromium Authors. All rights reserved. 1 // Copyright 2014 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be 2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file. 3 // found in the LICENSE file.
4 4
5 #ifndef COMPONENTS_HTML_VIEWER_HTML_DOCUMENT_H_ 5 #ifndef COMPONENTS_HTML_VIEWER_HTML_DOCUMENT_H_
6 #define COMPONENTS_HTML_VIEWER_HTML_DOCUMENT_H_ 6 #define COMPONENTS_HTML_VIEWER_HTML_DOCUMENT_H_
7 7
8 #include <set> 8 #include <set>
9 9
10 #include "base/callback.h" 10 #include "base/callback.h"
(...skipping 77 matching lines...) Expand 10 before | Expand all | Expand 10 after
88 blink::WebLocalFrame* frame, 88 blink::WebLocalFrame* frame,
89 const blink::WebURL& url, 89 const blink::WebURL& url,
90 blink::WebMediaPlayerClient* client); 90 blink::WebMediaPlayerClient* client);
91 virtual blink::WebMediaPlayer* createMediaPlayer( 91 virtual blink::WebMediaPlayer* createMediaPlayer(
92 blink::WebLocalFrame* frame, 92 blink::WebLocalFrame* frame,
93 const blink::WebURL& url, 93 const blink::WebURL& url,
94 blink::WebMediaPlayerClient* client, 94 blink::WebMediaPlayerClient* client,
95 blink::WebContentDecryptionModule* initial_cdm); 95 blink::WebContentDecryptionModule* initial_cdm);
96 virtual blink::WebFrame* createChildFrame( 96 virtual blink::WebFrame* createChildFrame(
97 blink::WebLocalFrame* parent, 97 blink::WebLocalFrame* parent,
98 blink::WebTreeScopeType scope,
98 const blink::WebString& frameName, 99 const blink::WebString& frameName,
99 blink::WebSandboxFlags sandboxFlags); 100 blink::WebSandboxFlags sandboxFlags);
100 virtual void frameDetached(blink::WebFrame*); 101 virtual void frameDetached(blink::WebFrame*);
101 virtual blink::WebCookieJar* cookieJar(blink::WebLocalFrame* frame); 102 virtual blink::WebCookieJar* cookieJar(blink::WebLocalFrame* frame);
102 virtual blink::WebNavigationPolicy decidePolicyForNavigation( 103 virtual blink::WebNavigationPolicy decidePolicyForNavigation(
103 blink::WebLocalFrame* frame, 104 blink::WebLocalFrame* frame,
104 blink::WebDataSource::ExtraData* data, 105 blink::WebDataSource::ExtraData* data,
105 const blink::WebURLRequest& request, 106 const blink::WebURLRequest& request,
106 blink::WebNavigationType nav_type, 107 blink::WebNavigationType nav_type,
107 blink::WebNavigationPolicy default_policy, 108 blink::WebNavigationPolicy default_policy,
(...skipping 62 matching lines...) Expand 10 before | Expand all | Expand 10 after
170 Setup* setup_; 171 Setup* setup_;
171 172
172 scoped_ptr<TouchHandler> touch_handler_; 173 scoped_ptr<TouchHandler> touch_handler_;
173 174
174 DISALLOW_COPY_AND_ASSIGN(HTMLDocument); 175 DISALLOW_COPY_AND_ASSIGN(HTMLDocument);
175 }; 176 };
176 177
177 } // namespace html_viewer 178 } // namespace html_viewer
178 179
179 #endif // COMPONENTS_HTML_VIEWER_HTML_DOCUMENT_H_ 180 #endif // COMPONENTS_HTML_VIEWER_HTML_DOCUMENT_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698