OLD | NEW |
1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2012 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_PUBLIC_RENDERER_RENDER_VIEW_OBSERVER_H_ | 5 #ifndef CONTENT_PUBLIC_RENDERER_RENDER_VIEW_OBSERVER_H_ |
6 #define CONTENT_PUBLIC_RENDERER_RENDER_VIEW_OBSERVER_H_ | 6 #define CONTENT_PUBLIC_RENDERER_RENDER_VIEW_OBSERVER_H_ |
7 #pragma once | |
8 | 7 |
9 #include "base/basictypes.h" | 8 #include "base/basictypes.h" |
10 #include "base/compiler_specific.h" | 9 #include "base/compiler_specific.h" |
11 #include "content/common/content_export.h" | 10 #include "content/common/content_export.h" |
12 #include "ipc/ipc_listener.h" | 11 #include "ipc/ipc_listener.h" |
13 #include "ipc/ipc_sender.h" | 12 #include "ipc/ipc_sender.h" |
14 #include "third_party/WebKit/Source/WebKit/chromium/public/WebIconURL.h" | 13 #include "third_party/WebKit/Source/WebKit/chromium/public/WebIconURL.h" |
15 | 14 |
16 class RenderViewImpl; | 15 class RenderViewImpl; |
17 | 16 |
(...skipping 89 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
107 RenderView* render_view_; | 106 RenderView* render_view_; |
108 // The routing ID of the associated RenderView. | 107 // The routing ID of the associated RenderView. |
109 int routing_id_; | 108 int routing_id_; |
110 | 109 |
111 DISALLOW_COPY_AND_ASSIGN(RenderViewObserver); | 110 DISALLOW_COPY_AND_ASSIGN(RenderViewObserver); |
112 }; | 111 }; |
113 | 112 |
114 } // namespace content | 113 } // namespace content |
115 | 114 |
116 #endif // CONTENT_PUBLIC_RENDERER_RENDER_VIEW_OBSERVER_H_ | 115 #endif // CONTENT_PUBLIC_RENDERER_RENDER_VIEW_OBSERVER_H_ |
OLD | NEW |