| 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 CHROME_BROWSER_WEBUI_WEB_UI_H_ | 5 #ifndef CONTENT_BROWSER_WEBUI_WEB_UI_H_ |
| 6 #define CHROME_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/string16.h" | 14 #include "base/string16.h" |
| 15 #include "chrome/common/page_transition_types.h" | 15 #include "chrome/common/page_transition_types.h" |
| 16 | 16 |
| (...skipping 194 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 211 | 211 |
| 212 // Extract a string value from a list Value. | 212 // Extract a string value from a list Value. |
| 213 std::wstring ExtractStringValue(const ListValue* value); | 213 std::wstring ExtractStringValue(const ListValue* value); |
| 214 | 214 |
| 215 WebUI* web_ui_; | 215 WebUI* web_ui_; |
| 216 | 216 |
| 217 private: | 217 private: |
| 218 DISALLOW_COPY_AND_ASSIGN(WebUIMessageHandler); | 218 DISALLOW_COPY_AND_ASSIGN(WebUIMessageHandler); |
| 219 }; | 219 }; |
| 220 | 220 |
| 221 #endif // CHROME_BROWSER_WEBUI_WEB_UI_H_ | 221 #endif // CONTENT_BROWSER_WEBUI_WEB_UI_H_ |
| OLD | NEW |