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 340 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
351 | 351 |
352 // Creates a full screen RenderWidget. | 352 // Creates a full screen RenderWidget. |
353 void CreateNewFullscreenWidget(int route_id); | 353 void CreateNewFullscreenWidget(int route_id); |
354 | 354 |
355 #if defined(OS_MACOSX) | 355 #if defined(OS_MACOSX) |
356 // Select popup menu related methods (for external popup menus). | 356 // Select popup menu related methods (for external popup menus). |
357 void DidSelectPopupMenuItem(int selected_index); | 357 void DidSelectPopupMenuItem(int selected_index); |
358 void DidCancelPopupMenu(); | 358 void DidCancelPopupMenu(); |
359 #endif | 359 #endif |
360 | 360 |
361 // When using an external autofill delegate. | |
362 void SelectAutofillSuggestionAtIndex(int listIndex); | |
Ilya Sherman
2011/10/26 11:09:58
We should not add a dependency on Autofill to cont
John Grabowski
2011/10/27 03:05:59
Yes. Looks like I didn't finish the Carnitas-ific
Ilya Sherman
2011/10/27 11:01:55
Thanks, the Carnitas-ification looks good with the
| |
363 | |
361 void ToggleSpeechInput(); | 364 void ToggleSpeechInput(); |
362 | 365 |
363 void set_save_accessibility_tree_for_testing(bool save) { | 366 void set_save_accessibility_tree_for_testing(bool save) { |
364 save_accessibility_tree_for_testing_ = save; | 367 save_accessibility_tree_for_testing_ = save; |
365 } | 368 } |
366 | 369 |
367 const webkit_glue::WebAccessibility& accessibility_tree_for_testing() { | 370 const webkit_glue::WebAccessibility& accessibility_tree_for_testing() { |
368 return accessibility_tree_; | 371 return accessibility_tree_; |
369 } | 372 } |
370 | 373 |
(...skipping 261 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
632 // The termination status of the last render view that terminated. | 635 // The termination status of the last render view that terminated. |
633 base::TerminationStatus render_view_termination_status_; | 636 base::TerminationStatus render_view_termination_status_; |
634 | 637 |
635 // A list of observers that filter messages. Weak references. | 638 // A list of observers that filter messages. Weak references. |
636 ObserverList<RenderViewHostObserver> observers_; | 639 ObserverList<RenderViewHostObserver> observers_; |
637 | 640 |
638 DISALLOW_COPY_AND_ASSIGN(RenderViewHost); | 641 DISALLOW_COPY_AND_ASSIGN(RenderViewHost); |
639 }; | 642 }; |
640 | 643 |
641 #endif // CONTENT_BROWSER_RENDERER_HOST_RENDER_VIEW_HOST_H_ | 644 #endif // CONTENT_BROWSER_RENDERER_HOST_RENDER_VIEW_HOST_H_ |
OLD | NEW |