| OLD | NEW |
| 1 // Copyright (c) 2009 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2009 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 CHROME_RENDERER_RENDER_VIEW_H_ | 5 #ifndef CHROME_RENDERER_RENDER_VIEW_H_ |
| 6 #define CHROME_RENDERER_RENDER_VIEW_H_ | 6 #define CHROME_RENDERER_RENDER_VIEW_H_ |
| 7 | 7 |
| 8 #include <set> | 8 #include <set> |
| 9 #include <string> | 9 #include <string> |
| 10 #include <queue> | 10 #include <queue> |
| (...skipping 519 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 530 bool new_navigation, | 530 bool new_navigation, |
| 531 const GURL& display_url, | 531 const GURL& display_url, |
| 532 const std::string& security_info); | 532 const std::string& security_info); |
| 533 void OnStopFinding(bool clear_selection); | 533 void OnStopFinding(bool clear_selection); |
| 534 void OnFindReplyAck(); | 534 void OnFindReplyAck(); |
| 535 void OnUpdateTargetURLAck(); | 535 void OnUpdateTargetURLAck(); |
| 536 void OnUndo(); | 536 void OnUndo(); |
| 537 void OnRedo(); | 537 void OnRedo(); |
| 538 void OnCut(); | 538 void OnCut(); |
| 539 void OnCopy(); | 539 void OnCopy(); |
| 540 void OnCopyToFindPboard(); |
| 540 void OnPaste(); | 541 void OnPaste(); |
| 541 void OnReplace(const std::wstring& text); | 542 void OnReplace(const std::wstring& text); |
| 542 void OnAdvanceToNextMisspelling(); | 543 void OnAdvanceToNextMisspelling(); |
| 543 void OnToggleSpellPanel(bool is_currently_visible); | 544 void OnToggleSpellPanel(bool is_currently_visible); |
| 544 void OnToggleSpellCheck(); | 545 void OnToggleSpellCheck(); |
| 545 void OnDelete(); | 546 void OnDelete(); |
| 546 void OnSelectAll(); | 547 void OnSelectAll(); |
| 547 void OnCopyImageAt(int x, int y); | 548 void OnCopyImageAt(int x, int y); |
| 548 void OnExecuteEditCommand(const std::string& name, const std::string& value); | 549 void OnExecuteEditCommand(const std::string& name, const std::string& value); |
| 549 void OnSetEditCommandsForNextKeyEvent(const EditCommands& edit_commands); | 550 void OnSetEditCommandsForNextKeyEvent(const EditCommands& edit_commands); |
| (...skipping 367 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 917 WebPreferences webkit_preferences_; | 918 WebPreferences webkit_preferences_; |
| 918 | 919 |
| 919 // Stores edit commands associated to the next key event. | 920 // Stores edit commands associated to the next key event. |
| 920 // Shall be cleared as soon as the next key event is processed. | 921 // Shall be cleared as soon as the next key event is processed. |
| 921 EditCommands edit_commands_; | 922 EditCommands edit_commands_; |
| 922 | 923 |
| 923 DISALLOW_COPY_AND_ASSIGN(RenderView); | 924 DISALLOW_COPY_AND_ASSIGN(RenderView); |
| 924 }; | 925 }; |
| 925 | 926 |
| 926 #endif // CHROME_RENDERER_RENDER_VIEW_H_ | 927 #endif // CHROME_RENDERER_RENDER_VIEW_H_ |
| OLD | NEW |