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(), |