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 #include "chrome/browser/ui/webui/sync_internals_ui.h" | 5 #include "chrome/browser/ui/webui/sync_internals_ui.h" |
6 | 6 |
7 #include <cstddef> | 7 #include <cstddef> |
8 #include <string> | 8 #include <string> |
9 | 9 |
10 #include "base/message_loop.h" | 10 #include "base/message_loop.h" |
11 #include "base/utf_string_conversions.h" | 11 #include "base/utf_string_conversions.h" |
12 #include "base/values.h" | 12 #include "base/values.h" |
13 #include "chrome/browser/sync/profile_sync_service_mock.h" | 13 #include "chrome/browser/sync/profile_sync_service_mock.h" |
14 #include "chrome/test/base/chrome_render_view_host_test_harness.h" | 14 #include "chrome/test/base/chrome_render_view_host_test_harness.h" |
15 #include "chrome/test/base/profile_mock.h" | 15 #include "chrome/test/base/profile_mock.h" |
16 #include "content/public/browser/web_ui_controller.h" | 16 #include "content/public/browser/web_ui_controller.h" |
17 #include "content/test/test_browser_thread.h" | 17 #include "content/public/test/test_browser_thread.h" |
18 #include "sync/js/js_arg_list.h" | 18 #include "sync/js/js_arg_list.h" |
19 #include "sync/js/js_event_details.h" | 19 #include "sync/js/js_event_details.h" |
20 #include "sync/js/js_test_util.h" | 20 #include "sync/js/js_test_util.h" |
21 #include "testing/gmock/include/gmock/gmock.h" | 21 #include "testing/gmock/include/gmock/gmock.h" |
22 #include "testing/gtest/include/gtest/gtest.h" | 22 #include "testing/gtest/include/gtest/gtest.h" |
23 | 23 |
24 // Rewrite to use WebUI testing infrastructure. Current code below is mostly | 24 // Rewrite to use WebUI testing infrastructure. Current code below is mostly |
25 // testing how WebUI concrete class serializes function parameters, and that | 25 // testing how WebUI concrete class serializes function parameters, and that |
26 // SyncInternalsUI::HandleJSEvent/HandleJsReply prefix the given function with | 26 // SyncInternalsUI::HandleJSEvent/HandleJsReply prefix the given function with |
27 // "chrome.sync." and postfix it with ".fire" or ".handleReply". | 27 // "chrome.sync." and postfix it with ".fire" or ".handleReply". |
(...skipping 182 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
210 ExecuteJavascript(ASCIIToUTF16(kAboutInfoCall))); | 210 ExecuteJavascript(ASCIIToUTF16(kAboutInfoCall))); |
211 | 211 |
212 ListValue args; | 212 ListValue args; |
213 sync_internals_ui_->OverrideHandleWebUIMessage( | 213 sync_internals_ui_->OverrideHandleWebUIMessage( |
214 GURL(), "getAboutInfo", args); | 214 GURL(), "getAboutInfo", args); |
215 } | 215 } |
216 | 216 |
217 } // namespace | 217 } // namespace |
218 | 218 |
219 */ | 219 */ |
OLD | NEW |