| 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 565 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 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 Loading... |
| 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_ |
| OLD | NEW |