| OLD | NEW |
| 1 // Copyright (c) 2006-2008 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2006-2008 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 <string> | 8 #include <string> |
| 9 #include <vector> | 9 #include <vector> |
| 10 | 10 |
| (...skipping 378 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 389 const std::string& security_info); | 389 const std::string& security_info); |
| 390 void OnStopFinding(bool clear_selection); | 390 void OnStopFinding(bool clear_selection); |
| 391 void OnFindReplyAck(); | 391 void OnFindReplyAck(); |
| 392 void OnUpdateTargetURLAck(); | 392 void OnUpdateTargetURLAck(); |
| 393 void OnUndo(); | 393 void OnUndo(); |
| 394 void OnRedo(); | 394 void OnRedo(); |
| 395 void OnCut(); | 395 void OnCut(); |
| 396 void OnCopy(); | 396 void OnCopy(); |
| 397 void OnPaste(); | 397 void OnPaste(); |
| 398 void OnReplace(const std::wstring& text); | 398 void OnReplace(const std::wstring& text); |
| 399 void OnToggleSpellCheck(); |
| 399 void OnDelete(); | 400 void OnDelete(); |
| 400 void OnSelectAll(); | 401 void OnSelectAll(); |
| 401 void OnCopyImageAt(int x, int y); | 402 void OnCopyImageAt(int x, int y); |
| 402 void OnInspectElement(int x, int y); | 403 void OnInspectElement(int x, int y); |
| 403 void OnShowJavaScriptConsole(); | 404 void OnShowJavaScriptConsole(); |
| 404 void OnCancelDownload(int32 download_id); | 405 void OnCancelDownload(int32 download_id); |
| 405 void OnFind(const FindInPageRequest& request); | 406 void OnFind(const FindInPageRequest& request); |
| 406 void OnZoom(int function); | 407 void OnZoom(int function); |
| 407 void OnSetPageEncoding(const std::wstring& encoding_name); | 408 void OnSetPageEncoding(const std::wstring& encoding_name); |
| 408 void OnGetAllSavableResourceLinksForCurrentPage(const GURL& page_url); | 409 void OnGetAllSavableResourceLinksForCurrentPage(const GURL& page_url); |
| (...skipping 297 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 706 // process to send a message to us saying that a blocked popup notification | 707 // process to send a message to us saying that a blocked popup notification |
| 707 // is being displayed. We instead assume that when we create a window off | 708 // is being displayed. We instead assume that when we create a window off |
| 708 // this RenderView, that it is going to be blocked until we get a message | 709 // this RenderView, that it is going to be blocked until we get a message |
| 709 // from the Browser process telling us otherwise. | 710 // from the Browser process telling us otherwise. |
| 710 bool popup_notification_visible_; | 711 bool popup_notification_visible_; |
| 711 | 712 |
| 712 DISALLOW_COPY_AND_ASSIGN(RenderView); | 713 DISALLOW_COPY_AND_ASSIGN(RenderView); |
| 713 }; | 714 }; |
| 714 | 715 |
| 715 #endif // CHROME_RENDERER_RENDER_VIEW_H_ | 716 #endif // CHROME_RENDERER_RENDER_VIEW_H_ |
| OLD | NEW |