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_BROWSER_WEBUI_WEB_UI_IMPL_H_ | 5 #ifndef CONTENT_BROWSER_WEBUI_WEB_UI_IMPL_H_ |
6 #define CONTENT_BROWSER_WEBUI_WEB_UI_IMPL_H_ | 6 #define CONTENT_BROWSER_WEBUI_WEB_UI_IMPL_H_ |
7 | 7 |
8 #include <map> | 8 #include <map> |
9 #include <set> | 9 #include <set> |
10 | 10 |
11 #include "base/compiler_specific.h" | 11 #include "base/compiler_specific.h" |
| 12 #include "base/macros.h" |
12 #include "base/memory/scoped_vector.h" | 13 #include "base/memory/scoped_vector.h" |
13 #include "base/memory/weak_ptr.h" | 14 #include "base/memory/weak_ptr.h" |
14 #include "content/public/browser/web_ui.h" | 15 #include "content/public/browser/web_ui.h" |
15 #include "ipc/ipc_listener.h" | 16 #include "ipc/ipc_listener.h" |
16 | 17 |
17 namespace content { | 18 namespace content { |
18 class RenderFrameHost; | 19 class RenderFrameHost; |
19 class RenderViewHost; | 20 class RenderViewHost; |
20 | 21 |
21 class CONTENT_EXPORT WebUIImpl : public WebUI, | 22 class CONTENT_EXPORT WebUIImpl : public WebUI, |
(...skipping 94 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
116 const std::string frame_name_; | 117 const std::string frame_name_; |
117 | 118 |
118 scoped_ptr<WebUIController> controller_; | 119 scoped_ptr<WebUIController> controller_; |
119 | 120 |
120 DISALLOW_COPY_AND_ASSIGN(WebUIImpl); | 121 DISALLOW_COPY_AND_ASSIGN(WebUIImpl); |
121 }; | 122 }; |
122 | 123 |
123 } // namespace content | 124 } // namespace content |
124 | 125 |
125 #endif // CONTENT_BROWSER_WEBUI_WEB_UI_IMPL_H_ | 126 #endif // CONTENT_BROWSER_WEBUI_WEB_UI_IMPL_H_ |
OLD | NEW |