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

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: 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 565 matching lines...) Expand 10 before | Expand all | Expand 10 after
576 void OnMoveRangeSelectionExtent(const gfx::Point& point); 576 void OnMoveRangeSelectionExtent(const gfx::Point& point);
577 void OnReplace(const base::string16& text); 577 void OnReplace(const base::string16& text);
578 void OnReplaceMisspelling(const base::string16& text); 578 void OnReplaceMisspelling(const base::string16& text);
579 void OnCSSInsertRequest(const std::string& css); 579 void OnCSSInsertRequest(const std::string& css);
580 void OnJavaScriptExecuteRequest(const base::string16& javascript, 580 void OnJavaScriptExecuteRequest(const base::string16& javascript,
581 int id, 581 int id,
582 bool notify_result); 582 bool notify_result);
583 void OnJavaScriptExecuteRequestForTests(const base::string16& javascript, 583 void OnJavaScriptExecuteRequestForTests(const base::string16& javascript,
584 int id, 584 int id,
585 bool notify_result); 585 bool notify_result);
586 void OnFlushVisualStateRequest(int key);
586 void OnSetEditableSelectionOffsets(int start, int end); 587 void OnSetEditableSelectionOffsets(int start, int end);
587 void OnSetCompositionFromExistingText( 588 void OnSetCompositionFromExistingText(
588 int start, int end, 589 int start, int end,
589 const std::vector<blink::WebCompositionUnderline>& underlines); 590 const std::vector<blink::WebCompositionUnderline>& underlines);
590 void OnExecuteNoValueEditCommand(const std::string& name); 591 void OnExecuteNoValueEditCommand(const std::string& name);
591 void OnExtendSelectionAndDelete(int before, int after); 592 void OnExtendSelectionAndDelete(int before, int after);
592 void OnReload(bool ignore_cache); 593 void OnReload(bool ignore_cache);
593 void OnTextSurroundingSelectionRequest(size_t max_length); 594 void OnTextSurroundingSelectionRequest(size_t max_length);
594 void OnAddStyleSheetByURL(const std::string& url); 595 void OnAddStyleSheetByURL(const std::string& url);
595 void OnSetupTransitionView(const std::string& markup); 596 void OnSetupTransitionView(const std::string& markup);
(...skipping 240 matching lines...) Expand 10 before | Expand all | Expand 10 after
836 #endif 837 #endif
837 838
838 base::WeakPtrFactory<RenderFrameImpl> weak_factory_; 839 base::WeakPtrFactory<RenderFrameImpl> weak_factory_;
839 840
840 DISALLOW_COPY_AND_ASSIGN(RenderFrameImpl); 841 DISALLOW_COPY_AND_ASSIGN(RenderFrameImpl);
841 }; 842 };
842 843
843 } // namespace content 844 } // namespace content
844 845
845 #endif // CONTENT_RENDERER_RENDER_FRAME_IMPL_H_ 846 #endif // CONTENT_RENDERER_RENDER_FRAME_IMPL_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698