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

Unified Diff: chrome/browser/extensions/platform_app_browsertest_util.cc

Issue 11826048: Revert 176015 (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src/
Patch Set: Created 7 years, 11 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 side-by-side diff with in-line comments
Download patch
Index: chrome/browser/extensions/platform_app_browsertest_util.cc
===================================================================
--- chrome/browser/extensions/platform_app_browsertest_util.cc (revision 176046)
+++ chrome/browser/extensions/platform_app_browsertest_util.cc (working copy)
@@ -6,7 +6,7 @@
#include "base/command_line.h"
#include "base/stringprintf.h"
-#include "chrome/browser/extensions/api/tabs/tabs_api.h"
+#include "chrome/browser/extensions/api/tabs/tabs.h"
#include "chrome/browser/extensions/extension_function_test_utils.h"
#include "chrome/browser/extensions/shell_window_registry.h"
#include "chrome/browser/ui/browser.h"
@@ -93,7 +93,7 @@
size_t PlatformAppBrowserTest::RunGetWindowsFunctionForExtension(
const Extension* extension) {
- scoped_refptr<WindowsGetAllFunction> function = new WindowsGetAllFunction();
+ scoped_refptr<GetAllWindowsFunction> function = new GetAllWindowsFunction();
function->set_extension(extension);
scoped_ptr<base::ListValue> result(utils::ToList(
utils::RunFunctionAndReturnSingleResult(function.get(),
@@ -105,7 +105,7 @@
bool PlatformAppBrowserTest::RunGetWindowFunctionForExtension(
int window_id,
const Extension* extension) {
- scoped_refptr<WindowsGetFunction> function = new WindowsGetFunction();
+ scoped_refptr<GetWindowFunction> function = new GetWindowFunction();
function->set_extension(extension);
utils::RunFunction(
function.get(),

Powered by Google App Engine
This is Rietveld 408576698