| 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 508 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 519 void OnUndo(); | 519 void OnUndo(); |
| 520 void OnRedo(); | 520 void OnRedo(); |
| 521 void OnCut(); | 521 void OnCut(); |
| 522 void OnCopy(); | 522 void OnCopy(); |
| 523 void OnPaste(); | 523 void OnPaste(); |
| 524 void OnPasteAndMatchStyle(); | 524 void OnPasteAndMatchStyle(); |
| 525 void OnDelete(); | 525 void OnDelete(); |
| 526 void OnSelectAll(); | 526 void OnSelectAll(); |
| 527 void OnSelectRange(const gfx::Point& start, const gfx::Point& end); | 527 void OnSelectRange(const gfx::Point& start, const gfx::Point& end); |
| 528 void OnUnselect(); | 528 void OnUnselect(); |
| 529 void OnMoveSelectionExtent(const gfx::Point& point); |
| 529 void OnReplace(const base::string16& text); | 530 void OnReplace(const base::string16& text); |
| 530 void OnReplaceMisspelling(const base::string16& text); | 531 void OnReplaceMisspelling(const base::string16& text); |
| 531 void OnCSSInsertRequest(const std::string& css); | 532 void OnCSSInsertRequest(const std::string& css); |
| 532 void OnJavaScriptExecuteRequest(const base::string16& javascript, | 533 void OnJavaScriptExecuteRequest(const base::string16& javascript, |
| 533 int id, | 534 int id, |
| 534 bool notify_result); | 535 bool notify_result); |
| 535 void OnJavaScriptExecuteRequestForTests(const base::string16& javascript, | 536 void OnJavaScriptExecuteRequestForTests(const base::string16& javascript, |
| 536 int id, | 537 int id, |
| 537 bool notify_result); | 538 bool notify_result); |
| 538 void OnSetEditableSelectionOffsets(int start, int end); | 539 void OnSetEditableSelectionOffsets(int start, int end); |
| (...skipping 232 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 771 #endif | 772 #endif |
| 772 | 773 |
| 773 base::WeakPtrFactory<RenderFrameImpl> weak_factory_; | 774 base::WeakPtrFactory<RenderFrameImpl> weak_factory_; |
| 774 | 775 |
| 775 DISALLOW_COPY_AND_ASSIGN(RenderFrameImpl); | 776 DISALLOW_COPY_AND_ASSIGN(RenderFrameImpl); |
| 776 }; | 777 }; |
| 777 | 778 |
| 778 } // namespace content | 779 } // namespace content |
| 779 | 780 |
| 780 #endif // CONTENT_RENDERER_RENDER_FRAME_IMPL_H_ | 781 #endif // CONTENT_RENDERER_RENDER_FRAME_IMPL_H_ |
| OLD | NEW |