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

Side by Side Diff: chrome/browser/extensions/extension_tabs_apitest.cc

Issue 10829186: Tabs API is usable without tabs permission. (Closed) Base URL: http://git.chromium.org/chromium/src.git@master
Patch Set: . Created 8 years, 4 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 (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/extensions/extension_apitest.h" 5 #include "chrome/browser/extensions/extension_apitest.h"
6 6
7 #include "chrome/browser/prefs/incognito_mode_prefs.h" 7 #include "chrome/browser/prefs/incognito_mode_prefs.h"
8 #include "chrome/browser/prefs/pref_service.h" 8 #include "chrome/browser/prefs/pref_service.h"
9 #include "chrome/browser/profiles/profile.h" 9 #include "chrome/browser/profiles/profile.h"
10 #include "chrome/browser/ui/browser.h" 10 #include "chrome/browser/ui/browser.h"
(...skipping 204 matching lines...) Expand 10 before | Expand all | Expand 10 after
215 IN_PROC_BROWSER_TEST_F(ExtensionApiTest, DISABLED_GetViewsOfCreatedPopup) { 215 IN_PROC_BROWSER_TEST_F(ExtensionApiTest, DISABLED_GetViewsOfCreatedPopup) {
216 ASSERT_TRUE(RunExtensionSubtest("tabs/basics", "get_views_popup.html")) 216 ASSERT_TRUE(RunExtensionSubtest("tabs/basics", "get_views_popup.html"))
217 << message_; 217 << message_;
218 } 218 }
219 IN_PROC_BROWSER_TEST_F(ExtensionApiTest, DISABLED_GetViewsOfCreatedWindow) { 219 IN_PROC_BROWSER_TEST_F(ExtensionApiTest, DISABLED_GetViewsOfCreatedWindow) {
220 ASSERT_TRUE(RunExtensionSubtest("tabs/basics", "get_views_window.html")) 220 ASSERT_TRUE(RunExtensionSubtest("tabs/basics", "get_views_window.html"))
221 << message_; 221 << message_;
222 } 222 }
223 223
224 // Adding a new test? Awesome. But API tests are the old hotness. The 224 // Adding a new test? Awesome. But API tests are the old hotness. The
225 // new hotness is extension_test_utils. See extension_tabs_test.cc for 225 // new hotness is extension_test_utils. See tabs_test.cc for an example.
226 // an example. We are trying to phase out many uses of API tests as 226 // We are trying to phase out many uses of API tests as they tend to be flaky.
227 // they tend to be flaky.
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698