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

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: int -> uint62 everywhere for real. Created 5 years, 10 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
« no previous file with comments | « content/public/browser/render_frame_host.h ('k') | 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 588 matching lines...) Expand 10 before | Expand all | Expand 10 after
599 void OnMoveRangeSelectionExtent(const gfx::Point& point); 599 void OnMoveRangeSelectionExtent(const gfx::Point& point);
600 void OnReplace(const base::string16& text); 600 void OnReplace(const base::string16& text);
601 void OnReplaceMisspelling(const base::string16& text); 601 void OnReplaceMisspelling(const base::string16& text);
602 void OnCSSInsertRequest(const std::string& css); 602 void OnCSSInsertRequest(const std::string& css);
603 void OnJavaScriptExecuteRequest(const base::string16& javascript, 603 void OnJavaScriptExecuteRequest(const base::string16& javascript,
604 int id, 604 int id,
605 bool notify_result); 605 bool notify_result);
606 void OnJavaScriptExecuteRequestForTests(const base::string16& javascript, 606 void OnJavaScriptExecuteRequestForTests(const base::string16& javascript,
607 int id, 607 int id,
608 bool notify_result); 608 bool notify_result);
609 void OnFlushVisualStateRequest(uint64 key);
609 void OnSetEditableSelectionOffsets(int start, int end); 610 void OnSetEditableSelectionOffsets(int start, int end);
610 void OnSetCompositionFromExistingText( 611 void OnSetCompositionFromExistingText(
611 int start, int end, 612 int start, int end,
612 const std::vector<blink::WebCompositionUnderline>& underlines); 613 const std::vector<blink::WebCompositionUnderline>& underlines);
613 void OnExecuteNoValueEditCommand(const std::string& name); 614 void OnExecuteNoValueEditCommand(const std::string& name);
614 void OnExtendSelectionAndDelete(int before, int after); 615 void OnExtendSelectionAndDelete(int before, int after);
615 void OnReload(bool ignore_cache); 616 void OnReload(bool ignore_cache);
616 void OnTextSurroundingSelectionRequest(size_t max_length); 617 void OnTextSurroundingSelectionRequest(size_t max_length);
617 void OnAddStyleSheetByURL(const std::string& url); 618 void OnAddStyleSheetByURL(const std::string& url);
618 void OnSetupTransitionView(const std::string& markup); 619 void OnSetupTransitionView(const std::string& markup);
(...skipping 255 matching lines...) Expand 10 before | Expand all | Expand 10 after
874 #endif 875 #endif
875 876
876 base::WeakPtrFactory<RenderFrameImpl> weak_factory_; 877 base::WeakPtrFactory<RenderFrameImpl> weak_factory_;
877 878
878 DISALLOW_COPY_AND_ASSIGN(RenderFrameImpl); 879 DISALLOW_COPY_AND_ASSIGN(RenderFrameImpl);
879 }; 880 };
880 881
881 } // namespace content 882 } // namespace content
882 883
883 #endif // CONTENT_RENDERER_RENDER_FRAME_IMPL_H_ 884 #endif // CONTENT_RENDERER_RENDER_FRAME_IMPL_H_
OLDNEW
« no previous file with comments | « content/public/browser/render_frame_host.h ('k') | content/renderer/render_frame_impl.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698