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

Unified Diff: extensions/browser/api/test/test_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: 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: extensions/browser/api/test/test_api.h
diff --git a/extensions/browser/api/test/test_api.h b/extensions/browser/api/test/test_api.h
index c84b02d41756d156cec7f66c2e0edac60129be86..0ddf6dd9edce5148d03f53f4a4791047e7f35343 100644
--- a/extensions/browser/api/test/test_api.h
+++ b/extensions/browser/api/test/test_api.h
@@ -31,7 +31,7 @@ class TestNotifyPassFunction : public TestExtensionFunction {
virtual ~TestNotifyPassFunction();
// ExtensionFunction:
- virtual bool RunImpl() OVERRIDE;
+ virtual bool RunSync() OVERRIDE;
};
class TestNotifyFailFunction : public TestExtensionFunction {
@@ -42,7 +42,7 @@ class TestNotifyFailFunction : public TestExtensionFunction {
virtual ~TestNotifyFailFunction();
// ExtensionFunction:
- virtual bool RunImpl() OVERRIDE;
+ virtual bool RunSync() OVERRIDE;
};
class TestLogFunction : public TestExtensionFunction {
@@ -53,7 +53,7 @@ class TestLogFunction : public TestExtensionFunction {
virtual ~TestLogFunction();
// ExtensionFunction:
- virtual bool RunImpl() OVERRIDE;
+ virtual bool RunSync() OVERRIDE;
};
class TestResetQuotaFunction : public TestExtensionFunction {
@@ -64,7 +64,7 @@ class TestResetQuotaFunction : public TestExtensionFunction {
virtual ~TestResetQuotaFunction();
// ExtensionFunction:
- virtual bool RunImpl() OVERRIDE;
+ virtual bool RunSync() OVERRIDE;
};
class TestSendMessageFunction : public AsyncExtensionFunction {
@@ -79,7 +79,7 @@ class TestSendMessageFunction : public AsyncExtensionFunction {
virtual ~TestSendMessageFunction();
// ExtensionFunction:
- virtual bool RunImpl() OVERRIDE;
+ virtual bool RunSync() OVERRIDE;
};
class TestGetConfigFunction : public SyncExtensionFunction {
@@ -117,7 +117,7 @@ class TestGetConfigFunction : public SyncExtensionFunction {
virtual ~TestGetConfigFunction();
// ExtensionFunction:
- virtual bool RunImpl() OVERRIDE;
+ virtual bool RunSync() OVERRIDE;
};
class TestWaitForRoundTripFunction : public TestExtensionFunction {
@@ -128,7 +128,7 @@ class TestWaitForRoundTripFunction : public TestExtensionFunction {
virtual ~TestWaitForRoundTripFunction();
// ExtensionFunction:
- virtual bool RunImpl() OVERRIDE;
+ virtual bool RunSync() OVERRIDE;
};
} // namespace extensions

Powered by Google App Engine
This is Rietveld 408576698