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

Side by Side Diff: chrome/browser/renderer_host/render_view_host.h

Issue 63145: Copy text selection from renderer to browser every time it changes. (Closed) Base URL: svn://chrome-svn/chrome/trunk/src/
Patch Set: '' Created 11 years, 8 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 | Annotate | Revision Log
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_BROWSER_RENDERER_HOST_RENDER_VIEW_HOST_H_ 5 #ifndef CHROME_BROWSER_RENDERER_HOST_RENDER_VIEW_HOST_H_
6 #define CHROME_BROWSER_RENDERER_HOST_RENDER_VIEW_HOST_H_ 6 #define CHROME_BROWSER_RENDERER_HOST_RENDER_VIEW_HOST_H_
7 7
8 #include <string> 8 #include <string>
9 #include <vector> 9 #include <vector>
10 10
(...skipping 490 matching lines...) Expand 10 before | Expand all | Expand 10 after
501 const std::string& content); 501 const std::string& content);
502 void OnMsgForwardMessageToExternalHost(const std::string& message, 502 void OnMsgForwardMessageToExternalHost(const std::string& message,
503 const std::string& origin, 503 const std::string& origin,
504 const std::string& target); 504 const std::string& target);
505 #ifdef CHROME_PERSONALIZATION 505 #ifdef CHROME_PERSONALIZATION
506 void OnPersonalizationEvent(const std::string& message, 506 void OnPersonalizationEvent(const std::string& message,
507 const std::string& content); 507 const std::string& content);
508 #endif 508 #endif
509 void OnMsgGoToEntryAtOffset(int offset); 509 void OnMsgGoToEntryAtOffset(int offset);
510 void OnMsgSetTooltipText(const std::wstring& tooltip_text); 510 void OnMsgSetTooltipText(const std::wstring& tooltip_text);
511 void OnMsgSelectionChanged(); 511 void OnMsgSelectionChanged(const std::string& text);
512 void OnMsgSetSelectionText(const std::string& text);
513 void OnMsgPasteFromSelectionClipboard(); 512 void OnMsgPasteFromSelectionClipboard();
514 void OnMsgRunFileChooser(bool multiple_files, 513 void OnMsgRunFileChooser(bool multiple_files,
515 const std::wstring& title, 514 const std::wstring& title,
516 const std::wstring& default_file, 515 const std::wstring& default_file,
517 const std::wstring& filter); 516 const std::wstring& filter);
518 void OnMsgRunJavaScriptMessage(const std::wstring& message, 517 void OnMsgRunJavaScriptMessage(const std::wstring& message,
519 const std::wstring& default_prompt, 518 const std::wstring& default_prompt,
520 const GURL& frame_url, 519 const GURL& frame_url,
521 const int flags, 520 const int flags,
522 IPC::Message* reply_msg); 521 IPC::Message* reply_msg);
(...skipping 125 matching lines...) Expand 10 before | Expand all | Expand 10 after
648 647
649 bool are_javascript_messages_suppressed_; 648 bool are_javascript_messages_suppressed_;
650 649
651 // Handles processing IPC messages request extension functions be executed. 650 // Handles processing IPC messages request extension functions be executed.
652 ExtensionFunctionDispatcher extension_function_dispatcher_; 651 ExtensionFunctionDispatcher extension_function_dispatcher_;
653 652
654 DISALLOW_COPY_AND_ASSIGN(RenderViewHost); 653 DISALLOW_COPY_AND_ASSIGN(RenderViewHost);
655 }; 654 };
656 655
657 #endif // CHROME_BROWSER_RENDERER_HOST_RENDER_VIEW_HOST_H_ 656 #endif // CHROME_BROWSER_RENDERER_HOST_RENDER_VIEW_HOST_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698