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

Unified Diff: chrome/browser/chromeos/extensions/wallpaper_private_api_unittest.cc

Issue 12089062: Move API functions registrations out of ExtensionFunctionRegistry. (Closed) Base URL: http://src.chromium.org/svn/trunk/src/
Patch Set: Created 7 years, 10 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/chromeos/extensions/wallpaper_private_api_unittest.cc
===================================================================
--- chrome/browser/chromeos/extensions/wallpaper_private_api_unittest.cc (revision 181773)
+++ chrome/browser/chromeos/extensions/wallpaper_private_api_unittest.cc (working copy)
@@ -26,24 +26,26 @@
DISALLOW_COPY_AND_ASSIGN(WallpaperPrivateApiUnittest);
};
-class TestMinimizeFunction : public WallpaperMinimizeInactiveWindowsFunction {
+class TestMinimizeFunction
+ : public WallpaperPrivateMinimizeInactiveWindowsFunction {
public:
TestMinimizeFunction() {}
virtual bool RunImpl() OVERRIDE {
- return WallpaperMinimizeInactiveWindowsFunction::RunImpl();
+ return WallpaperPrivateMinimizeInactiveWindowsFunction::RunImpl();
}
protected:
virtual ~TestMinimizeFunction() {}
};
-class TestRestoreFunction : public WallpaperRestoreMinimizedWindowsFunction {
+class TestRestoreFunction
+ : public WallpaperPrivateRestoreMinimizedWindowsFunction {
public:
TestRestoreFunction() {}
virtual bool RunImpl() OVERRIDE {
- return WallpaperRestoreMinimizedWindowsFunction::RunImpl();
+ return WallpaperPrivateRestoreMinimizedWindowsFunction::RunImpl();
}
protected:
virtual ~TestRestoreFunction() {}
« no previous file with comments | « chrome/browser/chromeos/extensions/wallpaper_private_api.cc ('k') | chrome/browser/chromeos/power/brightness_observer.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698