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

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

Issue 7086005: Context menu for "Voice recognition options" (Closed) Base URL: http://git.chromium.org/git/chromium.git@trunk
Patch Set: Context menu for "Voice recognition options" only appears when input-field has x-webkit-speech Created 9 years, 5 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) 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
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 void SpeechInputAbout();
Satish 2011/07/19 08:22:39 add a comment?
gshires 2011/07/19 22:56:31 Done.
266
265 // Notifies the RenderView that the JavaScript message that was shown was 267 // Notifies the RenderView that the JavaScript message that was shown was
266 // closed by the user. 268 // closed by the user.
267 void JavaScriptDialogClosed(IPC::Message* reply_msg, 269 void JavaScriptDialogClosed(IPC::Message* reply_msg,
268 bool success, 270 bool success,
269 const string16& user_input); 271 const string16& user_input);
270 272
271 // Notifies the renderer that a a drag operation that it started has ended, 273 // Notifies the renderer that a a drag operation that it started has ended,
272 // either in a drop or by being cancelled. 274 // either in a drop or by being cancelled.
273 void DragSourceEndedAt( 275 void DragSourceEndedAt(
274 int client_x, int client_y, int screen_x, int screen_y, 276 int client_x, int client_y, int screen_x, int screen_y,
(...skipping 270 matching lines...) Expand 10 before | Expand all | Expand 10 after
545 // The termination status of the last render view that terminated. 547 // The termination status of the last render view that terminated.
546 base::TerminationStatus render_view_termination_status_; 548 base::TerminationStatus render_view_termination_status_;
547 549
548 // A list of observers that filter messages. Weak references. 550 // A list of observers that filter messages. Weak references.
549 ObserverList<RenderViewHostObserver> observers_; 551 ObserverList<RenderViewHostObserver> observers_;
550 552
551 DISALLOW_COPY_AND_ASSIGN(RenderViewHost); 553 DISALLOW_COPY_AND_ASSIGN(RenderViewHost);
552 }; 554 };
553 555
554 #endif // CONTENT_BROWSER_RENDERER_HOST_RENDER_VIEW_HOST_H_ 556 #endif // CONTENT_BROWSER_RENDERER_HOST_RENDER_VIEW_HOST_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698