OLD | NEW |
---|---|
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 581 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
592 void OnMoveRangeSelectionExtent(const gfx::Point& point); | 592 void OnMoveRangeSelectionExtent(const gfx::Point& point); |
593 void OnReplace(const base::string16& text); | 593 void OnReplace(const base::string16& text); |
594 void OnReplaceMisspelling(const base::string16& text); | 594 void OnReplaceMisspelling(const base::string16& text); |
595 void OnCSSInsertRequest(const std::string& css); | 595 void OnCSSInsertRequest(const std::string& css); |
596 void OnJavaScriptExecuteRequest(const base::string16& javascript, | 596 void OnJavaScriptExecuteRequest(const base::string16& javascript, |
597 int id, | 597 int id, |
598 bool notify_result); | 598 bool notify_result); |
599 void OnJavaScriptExecuteRequestForTests(const base::string16& javascript, | 599 void OnJavaScriptExecuteRequestForTests(const base::string16& javascript, |
600 int id, | 600 int id, |
601 bool notify_result); | 601 bool notify_result); |
602 void OnFlushVisualStateRequest(int key); | |
mkosiba (inactive)
2015/01/27 22:07:21
int64?
Ignacio Solla
2015/02/05 16:00:38
Done.
Ignacio Solla
2015/02/05 16:00:38
Done.
| |
602 void OnSetEditableSelectionOffsets(int start, int end); | 603 void OnSetEditableSelectionOffsets(int start, int end); |
603 void OnSetCompositionFromExistingText( | 604 void OnSetCompositionFromExistingText( |
604 int start, int end, | 605 int start, int end, |
605 const std::vector<blink::WebCompositionUnderline>& underlines); | 606 const std::vector<blink::WebCompositionUnderline>& underlines); |
606 void OnExecuteNoValueEditCommand(const std::string& name); | 607 void OnExecuteNoValueEditCommand(const std::string& name); |
607 void OnExtendSelectionAndDelete(int before, int after); | 608 void OnExtendSelectionAndDelete(int before, int after); |
608 void OnReload(bool ignore_cache); | 609 void OnReload(bool ignore_cache); |
609 void OnTextSurroundingSelectionRequest(size_t max_length); | 610 void OnTextSurroundingSelectionRequest(size_t max_length); |
610 void OnAddStyleSheetByURL(const std::string& url); | 611 void OnAddStyleSheetByURL(const std::string& url); |
611 void OnSetupTransitionView(const std::string& markup); | 612 void OnSetupTransitionView(const std::string& markup); |
(...skipping 240 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
852 #endif | 853 #endif |
853 | 854 |
854 base::WeakPtrFactory<RenderFrameImpl> weak_factory_; | 855 base::WeakPtrFactory<RenderFrameImpl> weak_factory_; |
855 | 856 |
856 DISALLOW_COPY_AND_ASSIGN(RenderFrameImpl); | 857 DISALLOW_COPY_AND_ASSIGN(RenderFrameImpl); |
857 }; | 858 }; |
858 | 859 |
859 } // namespace content | 860 } // namespace content |
860 | 861 |
861 #endif // CONTENT_RENDERER_RENDER_FRAME_IMPL_H_ | 862 #endif // CONTENT_RENDERER_RENDER_FRAME_IMPL_H_ |
OLD | NEW |