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

Unified Diff: chrome/browser/extensions/api/autotest_private/autotest_private_api.h

Issue 252653002: Rename (Chrome)SyncExtensionFunction::RunImpl to RunSync so that the RunImpl (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: fix bookmarks Created 6 years, 8 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/api/autotest_private/autotest_private_api.h
diff --git a/chrome/browser/extensions/api/autotest_private/autotest_private_api.h b/chrome/browser/extensions/api/autotest_private/autotest_private_api.h
index 213b9d7c9e0980f1cb0ad3d9aab81c59821caa3e..daa94d95b27c9fc33f9abef2f38c9d1de69a902c 100644
--- a/chrome/browser/extensions/api/autotest_private/autotest_private_api.h
+++ b/chrome/browser/extensions/api/autotest_private/autotest_private_api.h
@@ -19,7 +19,7 @@ class AutotestPrivateLogoutFunction : public ChromeSyncExtensionFunction {
private:
virtual ~AutotestPrivateLogoutFunction() {}
- virtual bool RunImpl() OVERRIDE;
+ virtual bool RunSync() OVERRIDE;
};
class AutotestPrivateRestartFunction : public ChromeSyncExtensionFunction {
@@ -28,7 +28,7 @@ class AutotestPrivateRestartFunction : public ChromeSyncExtensionFunction {
private:
virtual ~AutotestPrivateRestartFunction() {}
- virtual bool RunImpl() OVERRIDE;
+ virtual bool RunSync() OVERRIDE;
};
class AutotestPrivateShutdownFunction : public ChromeSyncExtensionFunction {
@@ -38,7 +38,7 @@ class AutotestPrivateShutdownFunction : public ChromeSyncExtensionFunction {
private:
virtual ~AutotestPrivateShutdownFunction() {}
- virtual bool RunImpl() OVERRIDE;
+ virtual bool RunSync() OVERRIDE;
};
class AutotestPrivateLoginStatusFunction : public ChromeSyncExtensionFunction {
@@ -48,7 +48,7 @@ class AutotestPrivateLoginStatusFunction : public ChromeSyncExtensionFunction {
private:
virtual ~AutotestPrivateLoginStatusFunction() {}
- virtual bool RunImpl() OVERRIDE;
+ virtual bool RunSync() OVERRIDE;
};
class AutotestPrivateLockScreenFunction : public ChromeSyncExtensionFunction {
@@ -58,7 +58,7 @@ class AutotestPrivateLockScreenFunction : public ChromeSyncExtensionFunction {
private:
virtual ~AutotestPrivateLockScreenFunction() {}
- virtual bool RunImpl() OVERRIDE;
+ virtual bool RunSync() OVERRIDE;
};
class AutotestPrivateGetExtensionsInfoFunction
@@ -69,7 +69,7 @@ class AutotestPrivateGetExtensionsInfoFunction
private:
virtual ~AutotestPrivateGetExtensionsInfoFunction() {}
- virtual bool RunImpl() OVERRIDE;
+ virtual bool RunSync() OVERRIDE;
};
class AutotestPrivateSimulateAsanMemoryBugFunction
@@ -80,7 +80,7 @@ class AutotestPrivateSimulateAsanMemoryBugFunction
private:
virtual ~AutotestPrivateSimulateAsanMemoryBugFunction() {}
- virtual bool RunImpl() OVERRIDE;
+ virtual bool RunSync() OVERRIDE;
};
// Don't kill the browser when we're in a browser test.

Powered by Google App Engine
This is Rietveld 408576698