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

Side by Side Diff: chrome/browser/apps/app_view_browsertest.cc

Issue 584513003: Move extension_test_message_listener to extensions. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Rebase Created 6 years, 3 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
OLDNEW
1 // Copyright 2014 The Chromium Authors. All rights reserved. 1 // Copyright 2014 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 "base/strings/stringprintf.h" 5 #include "base/strings/stringprintf.h"
6 #include "chrome/browser/apps/app_browsertest_util.h" 6 #include "chrome/browser/apps/app_browsertest_util.h"
7 #include "chrome/browser/extensions/extension_test_message_listener.h"
8 #include "chrome/test/base/ui_test_utils.h" 7 #include "chrome/test/base/ui_test_utils.h"
9 #include "content/public/browser/notification_service.h" 8 #include "content/public/browser/notification_service.h"
10 #include "content/public/browser/render_process_host.h" 9 #include "content/public/browser/render_process_host.h"
11 #include "content/public/test/browser_test_utils.h" 10 #include "content/public/test/browser_test_utils.h"
12 #include "content/public/test/test_utils.h" 11 #include "content/public/test/test_utils.h"
13 #include "extensions/browser/guest_view/guest_view_manager.h" 12 #include "extensions/browser/guest_view/guest_view_manager.h"
14 #include "extensions/browser/guest_view/guest_view_manager_factory.h" 13 #include "extensions/browser/guest_view/guest_view_manager_factory.h"
15 #include "extensions/common/switches.h" 14 #include "extensions/common/switches.h"
15 #include "extensions/test/extension_test_message_listener.h"
16 #include "net/test/embedded_test_server/embedded_test_server.h" 16 #include "net/test/embedded_test_server/embedded_test_server.h"
17 #include "net/test/embedded_test_server/http_request.h" 17 #include "net/test/embedded_test_server/http_request.h"
18 #include "net/test/embedded_test_server/http_response.h" 18 #include "net/test/embedded_test_server/http_response.h"
19 19
20 namespace { 20 namespace {
21 21
22 class TestGuestViewManager : public extensions::GuestViewManager { 22 class TestGuestViewManager : public extensions::GuestViewManager {
23 public: 23 public:
24 explicit TestGuestViewManager(content::BrowserContext* context) : 24 explicit TestGuestViewManager(content::BrowserContext* context) :
25 extensions::GuestViewManager(context), 25 extensions::GuestViewManager(context),
(...skipping 135 matching lines...) Expand 10 before | Expand all | Expand 10 after
161 161
162 // Tests that <appview> correctly processes parameters passed on connect. 162 // Tests that <appview> correctly processes parameters passed on connect.
163 IN_PROC_BROWSER_TEST_F(AppViewTest, TestAppViewGoodDataShouldSucceed) { 163 IN_PROC_BROWSER_TEST_F(AppViewTest, TestAppViewGoodDataShouldSucceed) {
164 const extensions::Extension* skeleton_app = 164 const extensions::Extension* skeleton_app =
165 InstallPlatformApp("app_view/shim/skeleton"); 165 InstallPlatformApp("app_view/shim/skeleton");
166 TestHelper("testAppViewGoodDataShouldSucceed", 166 TestHelper("testAppViewGoodDataShouldSucceed",
167 "app_view/shim", 167 "app_view/shim",
168 skeleton_app->id(), 168 skeleton_app->id(),
169 NO_TEST_SERVER); 169 NO_TEST_SERVER);
170 } 170 }
OLDNEW
« no previous file with comments | « chrome/browser/apps/app_url_redirector_browsertest.cc ('k') | chrome/browser/apps/app_window_browsertest.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698