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

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

Issue 831903004: [WebView] Add a new flushVisualState API to AwContents. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Address review comments Created 5 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 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 579 matching lines...) Expand 10 before | Expand all | Expand 10 after
590 void OnMoveRangeSelectionExtent(const gfx::Point& point); 590 void OnMoveRangeSelectionExtent(const gfx::Point& point);
591 void OnReplace(const base::string16& text); 591 void OnReplace(const base::string16& text);
592 void OnReplaceMisspelling(const base::string16& text); 592 void OnReplaceMisspelling(const base::string16& text);
593 void OnCSSInsertRequest(const std::string& css); 593 void OnCSSInsertRequest(const std::string& css);
594 void OnJavaScriptExecuteRequest(const base::string16& javascript, 594 void OnJavaScriptExecuteRequest(const base::string16& javascript,
595 int id, 595 int id,
596 bool notify_result); 596 bool notify_result);
597 void OnJavaScriptExecuteRequestForTests(const base::string16& javascript, 597 void OnJavaScriptExecuteRequestForTests(const base::string16& javascript,
598 int id, 598 int id,
599 bool notify_result); 599 bool notify_result);
600 void OnFlushVisualStateRequest(int key);
600 void OnSetEditableSelectionOffsets(int start, int end); 601 void OnSetEditableSelectionOffsets(int start, int end);
601 void OnSetCompositionFromExistingText( 602 void OnSetCompositionFromExistingText(
602 int start, int end, 603 int start, int end,
603 const std::vector<blink::WebCompositionUnderline>& underlines); 604 const std::vector<blink::WebCompositionUnderline>& underlines);
604 void OnExecuteNoValueEditCommand(const std::string& name); 605 void OnExecuteNoValueEditCommand(const std::string& name);
605 void OnExtendSelectionAndDelete(int before, int after); 606 void OnExtendSelectionAndDelete(int before, int after);
606 void OnReload(bool ignore_cache); 607 void OnReload(bool ignore_cache);
607 void OnTextSurroundingSelectionRequest(size_t max_length); 608 void OnTextSurroundingSelectionRequest(size_t max_length);
608 void OnAddStyleSheetByURL(const std::string& url); 609 void OnAddStyleSheetByURL(const std::string& url);
609 void OnSetupTransitionView(const std::string& markup); 610 void OnSetupTransitionView(const std::string& markup);
(...skipping 240 matching lines...) Expand 10 before | Expand all | Expand 10 after
850 #endif 851 #endif
851 852
852 base::WeakPtrFactory<RenderFrameImpl> weak_factory_; 853 base::WeakPtrFactory<RenderFrameImpl> weak_factory_;
853 854
854 DISALLOW_COPY_AND_ASSIGN(RenderFrameImpl); 855 DISALLOW_COPY_AND_ASSIGN(RenderFrameImpl);
855 }; 856 };
856 857
857 } // namespace content 858 } // namespace content
858 859
859 #endif // CONTENT_RENDERER_RENDER_FRAME_IMPL_H_ 860 #endif // CONTENT_RENDERER_RENDER_FRAME_IMPL_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698