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 #pragma once | |
8 | 7 |
9 #include <map> | 8 #include <map> |
10 | 9 |
11 #include "base/compiler_specific.h" | 10 #include "base/compiler_specific.h" |
12 #include "base/memory/weak_ptr.h" | 11 #include "base/memory/weak_ptr.h" |
13 #include "content/public/browser/web_ui.h" | 12 #include "content/public/browser/web_ui.h" |
14 #include "ipc/ipc_listener.h" | 13 #include "ipc/ipc_listener.h" |
15 | 14 |
16 namespace content { | 15 namespace content { |
17 class RenderViewHost; | 16 class RenderViewHost; |
(...skipping 93 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
111 // The path for the iframe this WebUI is embedded in (empty if not in an | 110 // The path for the iframe this WebUI is embedded in (empty if not in an |
112 // iframe). | 111 // iframe). |
113 std::string frame_xpath_; | 112 std::string frame_xpath_; |
114 | 113 |
115 scoped_ptr<content::WebUIController> controller_; | 114 scoped_ptr<content::WebUIController> controller_; |
116 | 115 |
117 DISALLOW_COPY_AND_ASSIGN(WebUIImpl); | 116 DISALLOW_COPY_AND_ASSIGN(WebUIImpl); |
118 }; | 117 }; |
119 | 118 |
120 #endif // CONTENT_BROWSER_WEBUI_WEB_UI_IMPL_H_ | 119 #endif // CONTENT_BROWSER_WEBUI_WEB_UI_IMPL_H_ |
OLD | NEW |