Chromium Code Reviews| 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 31 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 42 struct ContextMenuParams; | 42 struct ContextMenuParams; |
| 43 struct MediaPlayerAction; | 43 struct MediaPlayerAction; |
| 44 struct ViewHostMsg_AccessibilityNotification_Params; | 44 struct ViewHostMsg_AccessibilityNotification_Params; |
| 45 struct ViewHostMsg_CreateWindow_Params; | 45 struct ViewHostMsg_CreateWindow_Params; |
| 46 struct ViewHostMsg_ShowPopup_Params; | 46 struct ViewHostMsg_ShowPopup_Params; |
| 47 struct ViewMsg_Navigate_Params; | 47 struct ViewMsg_Navigate_Params; |
| 48 struct WebDropData; | 48 struct WebDropData; |
| 49 struct WebPreferences; | 49 struct WebPreferences; |
| 50 struct UserMetricsAction; | 50 struct UserMetricsAction; |
| 51 | 51 |
| 52 namespace base { | |
| 53 namespace i18n { | |
| 54 class String16WithDirection; | |
|
darin (slow to review)
2011/04/21 18:03:30
this forward declaration seems unnecessary since S
| |
| 55 } | |
| 56 } | |
| 57 | |
| 52 namespace gfx { | 58 namespace gfx { |
| 53 class Point; | 59 class Point; |
| 54 } // namespace gfx | 60 } // namespace gfx |
| 55 | 61 |
| 56 namespace webkit_glue { | 62 namespace webkit_glue { |
| 57 struct CustomContextMenuContext; | 63 struct CustomContextMenuContext; |
| 58 struct WebAccessibility; | 64 struct WebAccessibility; |
| 59 } // namespace webkit_glue | 65 } // namespace webkit_glue |
| 60 | 66 |
| 61 namespace WebKit { | 67 namespace WebKit { |
| (...skipping 627 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 689 // The enabled/disabled states of various commands. | 695 // The enabled/disabled states of various commands. |
| 690 std::map<RenderViewCommand, CommandState> command_states_; | 696 std::map<RenderViewCommand, CommandState> command_states_; |
| 691 | 697 |
| 692 // A list of observers that filter messages. Weak references. | 698 // A list of observers that filter messages. Weak references. |
| 693 ObserverList<RenderViewHostObserver> observers_; | 699 ObserverList<RenderViewHostObserver> observers_; |
| 694 | 700 |
| 695 DISALLOW_COPY_AND_ASSIGN(RenderViewHost); | 701 DISALLOW_COPY_AND_ASSIGN(RenderViewHost); |
| 696 }; | 702 }; |
| 697 | 703 |
| 698 #endif // CONTENT_BROWSER_RENDERER_HOST_RENDER_VIEW_HOST_H_ | 704 #endif // CONTENT_BROWSER_RENDERER_HOST_RENDER_VIEW_HOST_H_ |
| OLD | NEW |