Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(21)

Side by Side Diff: chrome/renderer/render_view.h

Issue 197035: [mac] Let cmd-e write the selection into the find pasteboard. (Closed)
Patch Set: Add comment, merge with ToT Created 11 years, 3 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« no previous file with comments | « chrome/common/render_messages_internal.h ('k') | chrome/renderer/render_view.cc » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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
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
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_
OLDNEW
« no previous file with comments | « chrome/common/render_messages_internal.h ('k') | chrome/renderer/render_view.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698