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