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

Unified Diff: chrome/browser/extensions/api/reading_list_private/reading_list_private_api.cc

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/reading_list_private/reading_list_private_api.cc
diff --git a/chrome/browser/extensions/api/reading_list_private/reading_list_private_api.cc b/chrome/browser/extensions/api/reading_list_private/reading_list_private_api.cc
index 69af0893969cfda178783831dbf47c63a1d8ccde..605a64832017a3ad68ab85d77776a8b613004624 100644
--- a/chrome/browser/extensions/api/reading_list_private/reading_list_private_api.cc
+++ b/chrome/browser/extensions/api/reading_list_private/reading_list_private_api.cc
@@ -47,7 +47,7 @@ bool ReadingListPrivateAddEntryFunction::RunImpl() {
return true;
}
-bool ReadingListPrivateRemoveEntryFunction::RunImpl() {
+bool ReadingListPrivateRemoveEntryFunction::RunSync() {
scoped_ptr<RemoveEntry::Params> params(RemoveEntry::Params::Create(*args_));
EXTENSION_FUNCTION_VALIDATE(params);
DomDistillerService* service =
@@ -63,7 +63,7 @@ bool ReadingListPrivateRemoveEntryFunction::RunImpl() {
return true;
}
-bool ReadingListPrivateGetEntriesFunction::RunImpl() {
+bool ReadingListPrivateGetEntriesFunction::RunSync() {
DomDistillerService* service =
DomDistillerServiceFactory::GetForBrowserContext(GetProfile());
const std::vector<ArticleEntry>& entries = service->GetEntries();

Powered by Google App Engine
This is Rietveld 408576698