Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(27)

Side by Side Diff: chrome/browser/ui/webui/sync_internals_ui_unittest.cc

Issue 9706012: Add abstractions that let embedders drive tests of WebContents. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Remove CONTENT_EXPORT on statically linked functions. Merge to head for commit. Created 8 years, 9 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
OLDNEW
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/browser/tab_contents/test_tab_contents.h"
17 #include "content/public/browser/web_ui_controller.h" 16 #include "content/public/browser/web_ui_controller.h"
18 #include "content/test/test_browser_thread.h" 17 #include "content/test/test_browser_thread.h"
19 #include "sync/js/js_arg_list.h" 18 #include "sync/js/js_arg_list.h"
20 #include "sync/js/js_event_details.h" 19 #include "sync/js/js_event_details.h"
21 #include "sync/js/js_test_util.h" 20 #include "sync/js/js_test_util.h"
22 #include "testing/gmock/include/gmock/gmock.h" 21 #include "testing/gmock/include/gmock/gmock.h"
23 #include "testing/gtest/include/gtest/gtest.h" 22 #include "testing/gtest/include/gtest/gtest.h"
24 23
25 // Rewrite to use WebUI testing infrastructure. Current code below is mostly 24 // Rewrite to use WebUI testing infrastructure. Current code below is mostly
26 // testing how WebUI concrete class serializes function parameters, and that 25 // testing how WebUI concrete class serializes function parameters, and that
(...skipping 184 matching lines...) Expand 10 before | Expand all | Expand 10 after
211 ExecuteJavascript(ASCIIToUTF16(kAboutInfoCall))); 210 ExecuteJavascript(ASCIIToUTF16(kAboutInfoCall)));
212 211
213 ListValue args; 212 ListValue args;
214 sync_internals_ui_->OverrideHandleWebUIMessage( 213 sync_internals_ui_->OverrideHandleWebUIMessage(
215 GURL(), "getAboutInfo", args); 214 GURL(), "getAboutInfo", args);
216 } 215 }
217 216
218 } // namespace 217 } // namespace
219 218
220 */ 219 */
OLDNEW
« no previous file with comments | « chrome/browser/ui/webui/print_preview/print_preview_ui_unittest.cc ('k') | chrome/browser/ui/webui/web_ui_unittest.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698