| OLD | NEW |
| 1 // Copyright (c) 2011 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2011 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_BROWSER_RENDERER_HOST_RENDER_VIEW_HOST_H_ | 5 #ifndef CONTENT_BROWSER_RENDERER_HOST_RENDER_VIEW_HOST_H_ |
| 6 #define CONTENT_BROWSER_RENDERER_HOST_RENDER_VIEW_HOST_H_ | 6 #define CONTENT_BROWSER_RENDERER_HOST_RENDER_VIEW_HOST_H_ |
| 7 #pragma once | 7 #pragma once |
| 8 | 8 |
| 9 #include <string> | 9 #include <string> |
| 10 #include <vector> | 10 #include <vector> |
| (...skipping 244 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 255 // Edit operations. | 255 // Edit operations. |
| 256 void Undo(); | 256 void Undo(); |
| 257 void Redo(); | 257 void Redo(); |
| 258 void Cut(); | 258 void Cut(); |
| 259 void Copy(); | 259 void Copy(); |
| 260 void CopyToFindPboard(); | 260 void CopyToFindPboard(); |
| 261 void Paste(); | 261 void Paste(); |
| 262 void Delete(); | 262 void Delete(); |
| 263 void SelectAll(); | 263 void SelectAll(); |
| 264 | 264 |
| 265 // Open Speech Input help page in a new tab. |
| 266 void SpeechInputAbout(); |
| 267 |
| 265 // Notifies the RenderView that the JavaScript message that was shown was | 268 // Notifies the RenderView that the JavaScript message that was shown was |
| 266 // closed by the user. | 269 // closed by the user. |
| 267 void JavaScriptDialogClosed(IPC::Message* reply_msg, | 270 void JavaScriptDialogClosed(IPC::Message* reply_msg, |
| 268 bool success, | 271 bool success, |
| 269 const string16& user_input); | 272 const string16& user_input); |
| 270 | 273 |
| 271 // Notifies the renderer that a a drag operation that it started has ended, | 274 // Notifies the renderer that a a drag operation that it started has ended, |
| 272 // either in a drop or by being cancelled. | 275 // either in a drop or by being cancelled. |
| 273 void DragSourceEndedAt( | 276 void DragSourceEndedAt( |
| 274 int client_x, int client_y, int screen_x, int screen_y, | 277 int client_x, int client_y, int screen_x, int screen_y, |
| (...skipping 270 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 545 // The termination status of the last render view that terminated. | 548 // The termination status of the last render view that terminated. |
| 546 base::TerminationStatus render_view_termination_status_; | 549 base::TerminationStatus render_view_termination_status_; |
| 547 | 550 |
| 548 // A list of observers that filter messages. Weak references. | 551 // A list of observers that filter messages. Weak references. |
| 549 ObserverList<RenderViewHostObserver> observers_; | 552 ObserverList<RenderViewHostObserver> observers_; |
| 550 | 553 |
| 551 DISALLOW_COPY_AND_ASSIGN(RenderViewHost); | 554 DISALLOW_COPY_AND_ASSIGN(RenderViewHost); |
| 552 }; | 555 }; |
| 553 | 556 |
| 554 #endif // CONTENT_BROWSER_RENDERER_HOST_RENDER_VIEW_HOST_H_ | 557 #endif // CONTENT_BROWSER_RENDERER_HOST_RENDER_VIEW_HOST_H_ |
| OLD | NEW |