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

Side by Side Diff: content/renderer/render_frame_impl.h

Issue 728653003: Navigation transitions (web to native app): Get names and rects of transition elements (Step 5) (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 6 years, 1 month 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
« no previous file with comments | « no previous file | content/renderer/render_frame_impl.cc » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 // Copyright 2013 The Chromium Authors. All rights reserved. 1 // Copyright 2013 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 CONTENT_RENDERER_RENDER_FRAME_IMPL_H_ 5 #ifndef CONTENT_RENDERER_RENDER_FRAME_IMPL_H_
6 #define CONTENT_RENDERER_RENDER_FRAME_IMPL_H_ 6 #define CONTENT_RENDERER_RENDER_FRAME_IMPL_H_
7 7
8 #include <vector> 8 #include <vector>
9 9
10 #include "base/basictypes.h" 10 #include "base/basictypes.h"
(...skipping 364 matching lines...) Expand 10 before | Expand all | Expand 10 after
375 virtual void didFinishDocumentLoad(blink::WebLocalFrame* frame); 375 virtual void didFinishDocumentLoad(blink::WebLocalFrame* frame);
376 virtual void didHandleOnloadEvents(blink::WebLocalFrame* frame); 376 virtual void didHandleOnloadEvents(blink::WebLocalFrame* frame);
377 virtual void didFailLoad(blink::WebLocalFrame* frame, 377 virtual void didFailLoad(blink::WebLocalFrame* frame,
378 const blink::WebURLError& error); 378 const blink::WebURLError& error);
379 virtual void didFinishLoad(blink::WebLocalFrame* frame); 379 virtual void didFinishLoad(blink::WebLocalFrame* frame);
380 virtual void didNavigateWithinPage(blink::WebLocalFrame* frame, 380 virtual void didNavigateWithinPage(blink::WebLocalFrame* frame,
381 const blink::WebHistoryItem& item, 381 const blink::WebHistoryItem& item,
382 blink::WebHistoryCommitType commit_type); 382 blink::WebHistoryCommitType commit_type);
383 virtual void didUpdateCurrentHistoryItem(blink::WebLocalFrame* frame); 383 virtual void didUpdateCurrentHistoryItem(blink::WebLocalFrame* frame);
384 virtual void addNavigationTransitionData( 384 virtual void addNavigationTransitionData(
385 const blink::WebString& allowedDestinationOrigin,
386 const blink::WebString& selector,
387 const blink::WebString& markup,
388 const blink::WebVector<blink::WebString>& web_ids,
389 const blink::WebVector<blink::WebRect>& web_rects);
390 virtual void addNavigationTransitionData(
391 const blink::WebTransitionElementData& data); 385 const blink::WebTransitionElementData& data);
392 virtual void didChangeThemeColor(); 386 virtual void didChangeThemeColor();
393 virtual void requestNotificationPermission( 387 virtual void requestNotificationPermission(
394 const blink::WebSecurityOrigin& origin, 388 const blink::WebSecurityOrigin& origin,
395 blink::WebNotificationPermissionCallback* callback); 389 blink::WebNotificationPermissionCallback* callback);
396 virtual blink::WebNotificationPresenter* notificationPresenter(); 390 virtual blink::WebNotificationPresenter* notificationPresenter();
397 virtual void didChangeSelection(bool is_empty_selection); 391 virtual void didChangeSelection(bool is_empty_selection);
398 virtual blink::WebColorChooser* createColorChooser( 392 virtual blink::WebColorChooser* createColorChooser(
399 blink::WebColorChooserClient* client, 393 blink::WebColorChooserClient* client,
400 const blink::WebColor& initial_color, 394 const blink::WebColor& initial_color,
(...skipping 405 matching lines...) Expand 10 before | Expand all | Expand 10 after
806 #endif 800 #endif
807 801
808 base::WeakPtrFactory<RenderFrameImpl> weak_factory_; 802 base::WeakPtrFactory<RenderFrameImpl> weak_factory_;
809 803
810 DISALLOW_COPY_AND_ASSIGN(RenderFrameImpl); 804 DISALLOW_COPY_AND_ASSIGN(RenderFrameImpl);
811 }; 805 };
812 806
813 } // namespace content 807 } // namespace content
814 808
815 #endif // CONTENT_RENDERER_RENDER_FRAME_IMPL_H_ 809 #endif // CONTENT_RENDERER_RENDER_FRAME_IMPL_H_
OLDNEW
« no previous file with comments | « no previous file | content/renderer/render_frame_impl.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698