| OLD | NEW |
| 1 // Copyright (c) 2011 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_H_ | 5 #ifndef CONTENT_BROWSER_WEBUI_WEB_UI_H_ |
| 6 #define CONTENT_BROWSER_WEBUI_WEB_UI_H_ | 6 #define CONTENT_BROWSER_WEBUI_WEB_UI_H_ |
| 7 #pragma once | 7 #pragma once |
| 8 | 8 |
| 9 #include <map> | 9 #include <map> |
| 10 #include <string> | 10 #include <string> |
| 11 #include <vector> | 11 #include <vector> |
| 12 | 12 |
| 13 #include "base/callback.h" | 13 #include "base/callback.h" |
| 14 #include "base/callback_old.h" | |
| 15 #include "base/compiler_specific.h" | 14 #include "base/compiler_specific.h" |
| 16 #include "base/string16.h" | 15 #include "base/string16.h" |
| 17 #include "content/common/content_export.h" | 16 #include "content/common/content_export.h" |
| 18 #include "content/public/common/page_transition_types.h" | 17 #include "content/public/common/page_transition_types.h" |
| 19 #include "ipc/ipc_channel.h" | 18 #include "ipc/ipc_channel.h" |
| 20 | 19 |
| 21 class GURL; | 20 class GURL; |
| 22 class RenderViewHost; | 21 class RenderViewHost; |
| 23 | 22 |
| 24 namespace base { | 23 namespace base { |
| (...skipping 172 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 197 MessageCallbackMap message_callbacks_; | 196 MessageCallbackMap message_callbacks_; |
| 198 | 197 |
| 199 // The path for the iframe this WebUI is embedded in (empty if not in an | 198 // The path for the iframe this WebUI is embedded in (empty if not in an |
| 200 // iframe). | 199 // iframe). |
| 201 std::string frame_xpath_; | 200 std::string frame_xpath_; |
| 202 | 201 |
| 203 DISALLOW_COPY_AND_ASSIGN(WebUI); | 202 DISALLOW_COPY_AND_ASSIGN(WebUI); |
| 204 }; | 203 }; |
| 205 | 204 |
| 206 #endif // CONTENT_BROWSER_WEBUI_WEB_UI_H_ | 205 #endif // CONTENT_BROWSER_WEBUI_WEB_UI_H_ |
| OLD | NEW |