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/test/ppapi/ppapi_test.h" | 5 #include "chrome/test/ppapi/ppapi_test.h" |
6 | 6 |
7 #include "base/command_line.h" | 7 #include "base/command_line.h" |
8 #include "base/file_util.h" | 8 #include "base/file_util.h" |
9 #include "base/path_service.h" | 9 #include "base/path_service.h" |
10 #include "base/strings/string_util.h" | 10 #include "base/strings/string_util.h" |
11 #include "base/strings/stringprintf.h" | 11 #include "base/strings/stringprintf.h" |
12 #include "chrome/browser/chrome_notification_types.h" | 12 #include "chrome/browser/chrome_notification_types.h" |
13 #include "chrome/browser/content_settings/host_content_settings_map.h" | 13 #include "chrome/browser/content_settings/host_content_settings_map.h" |
14 #include "chrome/browser/infobars/confirm_infobar_delegate.h" | 14 #include "chrome/browser/infobars/confirm_infobar_delegate.h" |
15 #include "chrome/browser/infobars/infobar.h" | 15 #include "chrome/browser/infobars/infobar.h" |
16 #include "chrome/browser/infobars/infobar_manager.h" | |
17 #include "chrome/browser/infobars/infobar_service.h" | 16 #include "chrome/browser/infobars/infobar_service.h" |
18 #include "chrome/browser/profiles/profile.h" | 17 #include "chrome/browser/profiles/profile.h" |
19 #include "chrome/browser/ui/browser.h" | 18 #include "chrome/browser/ui/browser.h" |
20 #include "chrome/browser/ui/tabs/tab_strip_model.h" | 19 #include "chrome/browser/ui/tabs/tab_strip_model.h" |
21 #include "chrome/common/chrome_paths.h" | 20 #include "chrome/common/chrome_paths.h" |
22 #include "chrome/common/chrome_switches.h" | 21 #include "chrome/common/chrome_switches.h" |
23 #include "chrome/test/base/test_switches.h" | 22 #include "chrome/test/base/test_switches.h" |
24 #include "chrome/test/base/ui_test_utils.h" | 23 #include "chrome/test/base/ui_test_utils.h" |
25 #include "components/nacl/common/nacl_switches.h" | 24 #include "components/nacl/common/nacl_switches.h" |
26 #include "content/public/browser/dom_operation_notification_details.h" | 25 #include "content/public/browser/dom_operation_notification_details.h" |
(...skipping 78 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
105 } | 104 } |
106 | 105 |
107 void PPAPITestBase::InfoBarObserver::VerifyInfoBarState() { | 106 void PPAPITestBase::InfoBarObserver::VerifyInfoBarState() { |
108 content::WebContents* web_contents = | 107 content::WebContents* web_contents = |
109 test_base_->browser()->tab_strip_model()->GetActiveWebContents(); | 108 test_base_->browser()->tab_strip_model()->GetActiveWebContents(); |
110 ASSERT_TRUE(web_contents != NULL); | 109 ASSERT_TRUE(web_contents != NULL); |
111 InfoBarService* infobar_service = | 110 InfoBarService* infobar_service = |
112 InfoBarService::FromWebContents(web_contents); | 111 InfoBarService::FromWebContents(web_contents); |
113 ASSERT_TRUE(infobar_service != NULL); | 112 ASSERT_TRUE(infobar_service != NULL); |
114 | 113 |
115 InfoBarManager* infobar_manager = infobar_service->infobar_manager(); | 114 EXPECT_EQ(expecting_infobar_ ? 1U : 0U, infobar_service->infobar_count()); |
116 EXPECT_EQ(expecting_infobar_ ? 1U : 0U, infobar_manager->infobar_count()); | |
117 if (!expecting_infobar_) | 115 if (!expecting_infobar_) |
118 return; | 116 return; |
119 expecting_infobar_ = false; | 117 expecting_infobar_ = false; |
120 | 118 |
121 InfoBar* infobar = infobar_manager->infobar_at(0); | 119 InfoBar* infobar = infobar_service->infobar_at(0); |
122 ConfirmInfoBarDelegate* delegate = | 120 ConfirmInfoBarDelegate* delegate = |
123 infobar->delegate()->AsConfirmInfoBarDelegate(); | 121 infobar->delegate()->AsConfirmInfoBarDelegate(); |
124 ASSERT_TRUE(delegate != NULL); | 122 ASSERT_TRUE(delegate != NULL); |
125 if (should_accept_) | 123 if (should_accept_) |
126 delegate->Accept(); | 124 delegate->Accept(); |
127 else | 125 else |
128 delegate->Cancel(); | 126 delegate->Cancel(); |
129 | 127 |
130 infobar_manager->RemoveInfoBar(infobar); | 128 infobar_service->RemoveInfoBar(infobar); |
131 } | 129 } |
132 | 130 |
133 PPAPITestBase::PPAPITestBase() { | 131 PPAPITestBase::PPAPITestBase() { |
134 } | 132 } |
135 | 133 |
136 void PPAPITestBase::SetUp() { | 134 void PPAPITestBase::SetUp() { |
137 EnablePixelOutput(); | 135 EnablePixelOutput(); |
138 InProcessBrowserTest::SetUp(); | 136 InProcessBrowserTest::SetUp(); |
139 } | 137 } |
140 | 138 |
(...skipping 342 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
483 } | 481 } |
484 | 482 |
485 void PPAPIBrokerInfoBarTest::SetUpOnMainThread() { | 483 void PPAPIBrokerInfoBarTest::SetUpOnMainThread() { |
486 // The default content setting for the PPAPI broker is ASK. We purposefully | 484 // The default content setting for the PPAPI broker is ASK. We purposefully |
487 // don't call PPAPITestBase::SetUpOnMainThread() to keep it that way. | 485 // don't call PPAPITestBase::SetUpOnMainThread() to keep it that way. |
488 | 486 |
489 base::FilePath plugin_lib; | 487 base::FilePath plugin_lib; |
490 EXPECT_TRUE(PathService::Get(chrome::FILE_NACL_PLUGIN, &plugin_lib)); | 488 EXPECT_TRUE(PathService::Get(chrome::FILE_NACL_PLUGIN, &plugin_lib)); |
491 EXPECT_TRUE(base::PathExists(plugin_lib)); | 489 EXPECT_TRUE(base::PathExists(plugin_lib)); |
492 } | 490 } |
OLD | NEW |