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

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

Issue 712183002: Navigation transitions (web to native app): Hide/Show transition elements (Chrome side) (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
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 554 matching lines...) Expand 10 before | Expand all | Expand 10 after
565 void OnSetEditableSelectionOffsets(int start, int end); 565 void OnSetEditableSelectionOffsets(int start, int end);
566 void OnSetCompositionFromExistingText( 566 void OnSetCompositionFromExistingText(
567 int start, int end, 567 int start, int end,
568 const std::vector<blink::WebCompositionUnderline>& underlines); 568 const std::vector<blink::WebCompositionUnderline>& underlines);
569 void OnExtendSelectionAndDelete(int before, int after); 569 void OnExtendSelectionAndDelete(int before, int after);
570 void OnReload(bool ignore_cache); 570 void OnReload(bool ignore_cache);
571 void OnTextSurroundingSelectionRequest(size_t max_length); 571 void OnTextSurroundingSelectionRequest(size_t max_length);
572 void OnAddStyleSheetByURL(const std::string& url); 572 void OnAddStyleSheetByURL(const std::string& url);
573 void OnSetupTransitionView(const std::string& markup); 573 void OnSetupTransitionView(const std::string& markup);
574 void OnBeginExitTransition(const std::string& css_selector); 574 void OnBeginExitTransition(const std::string& css_selector);
575 void OnHideTransitionElements(const std::string& css_selector);
576 void OnShowTransitionElements(const std::string& css_selector);
575 void OnSetAccessibilityMode(AccessibilityMode new_mode); 577 void OnSetAccessibilityMode(AccessibilityMode new_mode);
576 void OnDisownOpener(); 578 void OnDisownOpener();
577 #if defined(OS_ANDROID) 579 #if defined(OS_ANDROID)
578 void OnSelectPopupMenuItems(bool canceled, 580 void OnSelectPopupMenuItems(bool canceled,
579 const std::vector<int>& selected_indices); 581 const std::vector<int>& selected_indices);
580 #elif defined(OS_MACOSX) 582 #elif defined(OS_MACOSX)
581 void OnSelectPopupMenuItem(int selected_index); 583 void OnSelectPopupMenuItem(int selected_index);
582 void OnCopyToFindPboard(); 584 void OnCopyToFindPboard();
583 #endif 585 #endif
584 586
(...skipping 227 matching lines...) Expand 10 before | Expand all | Expand 10 after
812 #endif 814 #endif
813 815
814 base::WeakPtrFactory<RenderFrameImpl> weak_factory_; 816 base::WeakPtrFactory<RenderFrameImpl> weak_factory_;
815 817
816 DISALLOW_COPY_AND_ASSIGN(RenderFrameImpl); 818 DISALLOW_COPY_AND_ASSIGN(RenderFrameImpl);
817 }; 819 };
818 820
819 } // namespace content 821 } // namespace content
820 822
821 #endif // CONTENT_RENDERER_RENDER_FRAME_IMPL_H_ 823 #endif // CONTENT_RENDERER_RENDER_FRAME_IMPL_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698