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

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

Issue 1635873003: Replicating WebFrame::uniqueName across renderers. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@dump-render-tree3
Patch Set: Rebasing... 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
1 // Copyright 2015 The Chromium Authors. All rights reserved. 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 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_FRAME_H_ 5 #ifndef COMPONENTS_HTML_VIEWER_HTML_FRAME_H_
6 #define COMPONENTS_HTML_VIEWER_HTML_FRAME_H_ 6 #define COMPONENTS_HTML_VIEWER_HTML_FRAME_H_
7 7
8 #include <stdint.h> 8 #include <stdint.h>
9 9
10 #include <vector> 10 #include <vector>
(...skipping 154 matching lines...) Expand 10 before | Expand all | Expand 10 after
165 blink::WebMediaPlayer::LoadType load_type, 165 blink::WebMediaPlayer::LoadType load_type,
166 const blink::WebURL& url, 166 const blink::WebURL& url,
167 blink::WebMediaPlayerClient* client, 167 blink::WebMediaPlayerClient* client,
168 blink::WebMediaPlayerEncryptedMediaClient* encrypted_client, 168 blink::WebMediaPlayerEncryptedMediaClient* encrypted_client,
169 blink::WebContentDecryptionModule* initial_cdm, 169 blink::WebContentDecryptionModule* initial_cdm,
170 const blink::WebString& sink_id, 170 const blink::WebString& sink_id,
171 blink::WebMediaSession* media_session) override; 171 blink::WebMediaSession* media_session) override;
172 blink::WebFrame* createChildFrame( 172 blink::WebFrame* createChildFrame(
173 blink::WebLocalFrame* parent, 173 blink::WebLocalFrame* parent,
174 blink::WebTreeScopeType scope, 174 blink::WebTreeScopeType scope,
175 const blink::WebString& frame_ame, 175 const blink::WebString& frame_name,
176 const blink::WebString& frame_unique_name,
176 blink::WebSandboxFlags sandbox_flags, 177 blink::WebSandboxFlags sandbox_flags,
177 const blink::WebFrameOwnerProperties& frame_owner_properties) override; 178 const blink::WebFrameOwnerProperties& frame_owner_properties) override;
178 void frameDetached(blink::WebFrame* frame, 179 void frameDetached(blink::WebFrame* frame,
179 blink::WebFrameClient::DetachType type) override; 180 blink::WebFrameClient::DetachType type) override;
180 blink::WebCookieJar* cookieJar(blink::WebLocalFrame* frame) override; 181 blink::WebCookieJar* cookieJar(blink::WebLocalFrame* frame) override;
181 blink::WebNavigationPolicy decidePolicyForNavigation( 182 blink::WebNavigationPolicy decidePolicyForNavigation(
182 const NavigationPolicyInfo& info) override; 183 const NavigationPolicyInfo& info) override;
183 bool hasPendingNavigation(blink::WebLocalFrame* frame) override; 184 bool hasPendingNavigation(blink::WebLocalFrame* frame) override;
184 void didHandleOnloadEvents(blink::WebLocalFrame* frame) override; 185 void didHandleOnloadEvents(blink::WebLocalFrame* frame) override;
185 void didAddMessageToConsole(const blink::WebConsoleMessage& message, 186 void didAddMessageToConsole(const blink::WebConsoleMessage& message,
186 const blink::WebString& source_name, 187 const blink::WebString& source_name,
187 unsigned source_line, 188 unsigned source_line,
188 const blink::WebString& stack_trace) override; 189 const blink::WebString& stack_trace) override;
189 void didFinishLoad(blink::WebLocalFrame* frame) override; 190 void didFinishLoad(blink::WebLocalFrame* frame) override;
190 void didNavigateWithinPage(blink::WebLocalFrame* frame, 191 void didNavigateWithinPage(blink::WebLocalFrame* frame,
191 const blink::WebHistoryItem& history_item, 192 const blink::WebHistoryItem& history_item,
192 blink::WebHistoryCommitType commit_type) override; 193 blink::WebHistoryCommitType commit_type) override;
193 blink::WebGeolocationClient* geolocationClient() override; 194 blink::WebGeolocationClient* geolocationClient() override;
194 blink::WebEncryptedMediaClient* encryptedMediaClient() override; 195 blink::WebEncryptedMediaClient* encryptedMediaClient() override;
195 void didStartLoading(bool to_different_document) override; 196 void didStartLoading(bool to_different_document) override;
196 void didStopLoading() override; 197 void didStopLoading() override;
197 void didChangeLoadProgress(double load_progress) override; 198 void didChangeLoadProgress(double load_progress) override;
198 void dispatchLoad() override; 199 void dispatchLoad() override;
199 void didChangeName(blink::WebLocalFrame* frame, 200 void didChangeName(blink::WebLocalFrame* frame,
200 const blink::WebString& name) override; 201 const blink::WebString& name,
202 const blink::WebString& uniqueName) override;
201 void didCommitProvisionalLoad( 203 void didCommitProvisionalLoad(
202 blink::WebLocalFrame* frame, 204 blink::WebLocalFrame* frame,
203 const blink::WebHistoryItem& item, 205 const blink::WebHistoryItem& item,
204 blink::WebHistoryCommitType commit_type) override; 206 blink::WebHistoryCommitType commit_type) override;
205 void didReceiveTitle(blink::WebLocalFrame* frame, 207 void didReceiveTitle(blink::WebLocalFrame* frame,
206 const blink::WebString& title, 208 const blink::WebString& title,
207 blink::WebTextDirection direction) override; 209 blink::WebTextDirection direction) override;
208 void reportFindInFrameMatchCount(int identifier, 210 void reportFindInFrameMatchCount(int identifier,
209 int count, 211 int count,
210 bool finalUpdate) override; 212 bool finalUpdate) override;
(...skipping 169 matching lines...) Expand 10 before | Expand all | Expand 10 after
380 base::TimeTicks navigation_start_time_; 382 base::TimeTicks navigation_start_time_;
381 383
382 base::WeakPtrFactory<HTMLFrame> weak_factory_; 384 base::WeakPtrFactory<HTMLFrame> weak_factory_;
383 385
384 DISALLOW_COPY_AND_ASSIGN(HTMLFrame); 386 DISALLOW_COPY_AND_ASSIGN(HTMLFrame);
385 }; 387 };
386 388
387 } // namespace html_viewer 389 } // namespace html_viewer
388 390
389 #endif // COMPONENTS_HTML_VIEWER_HTML_FRAME_H_ 391 #endif // COMPONENTS_HTML_VIEWER_HTML_FRAME_H_
OLDNEW
« no previous file with comments | « no previous file | components/html_viewer/html_frame.cc » ('j') | components/html_viewer/html_frame.cc » ('J')

Powered by Google App Engine
This is Rietveld 408576698