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

Unified Diff: apps/shell/shell_app_sorting.cc

Issue 99053008: Rename apps::AppShell* to apps::Shell* (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 7 years 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
« no previous file with comments | « apps/shell/shell_app_sorting.h ('k') | apps/shell/shell_browser_context.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: apps/shell/shell_app_sorting.cc
diff --git a/apps/shell/app_shell_app_sorting.cc b/apps/shell/shell_app_sorting.cc
similarity index 59%
rename from apps/shell/app_shell_app_sorting.cc
rename to apps/shell/shell_app_sorting.cc
index a130d1beedddeb580c7922dacd717d4a38867afa..d792da3f136e56d3297539ddb0e5d55b73423142 100644
--- a/apps/shell/app_shell_app_sorting.cc
+++ b/apps/shell/shell_app_sorting.cc
@@ -2,7 +2,7 @@
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
-#include "apps/shell/app_shell_app_sorting.h"
+#include "apps/shell/shell_app_sorting.h"
#include "sync/api/string_ordinal.h"
@@ -17,90 +17,90 @@ const char kFirstPage[] = "a";
namespace apps {
-AppShellAppSorting::AppShellAppSorting() {
+ShellAppSorting::ShellAppSorting() {
}
-AppShellAppSorting::~AppShellAppSorting() {
+ShellAppSorting::~ShellAppSorting() {
}
-void AppShellAppSorting::SetExtensionScopedPrefs(
+void ShellAppSorting::SetExtensionScopedPrefs(
extensions::ExtensionScopedPrefs* prefs) {
}
-void AppShellAppSorting::SetExtensionSyncService(
+void ShellAppSorting::SetExtensionSyncService(
ExtensionSyncService* extension_sync_service) {
}
-void AppShellAppSorting::Initialize(
+void ShellAppSorting::Initialize(
const extensions::ExtensionIdList& extension_ids) {
}
-void AppShellAppSorting::FixNTPOrdinalCollisions() {
+void ShellAppSorting::FixNTPOrdinalCollisions() {
}
-void AppShellAppSorting::EnsureValidOrdinals(
+void ShellAppSorting::EnsureValidOrdinals(
const std::string& extension_id,
const syncer::StringOrdinal& suggested_page) {
}
-void AppShellAppSorting::OnExtensionMoved(
+void ShellAppSorting::OnExtensionMoved(
const std::string& moved_extension_id,
const std::string& predecessor_extension_id,
const std::string& successor_extension_id) {
}
-syncer::StringOrdinal AppShellAppSorting::GetAppLaunchOrdinal(
+syncer::StringOrdinal ShellAppSorting::GetAppLaunchOrdinal(
const std::string& extension_id) const {
return syncer::StringOrdinal(kFirstApp);
}
-void AppShellAppSorting::SetAppLaunchOrdinal(
+void ShellAppSorting::SetAppLaunchOrdinal(
const std::string& extension_id,
const syncer::StringOrdinal& new_app_launch_ordinal) {
}
-syncer::StringOrdinal AppShellAppSorting::CreateFirstAppLaunchOrdinal(
+syncer::StringOrdinal ShellAppSorting::CreateFirstAppLaunchOrdinal(
const syncer::StringOrdinal& page_ordinal) const {
return syncer::StringOrdinal(kFirstApp);
}
-syncer::StringOrdinal AppShellAppSorting::CreateNextAppLaunchOrdinal(
+syncer::StringOrdinal ShellAppSorting::CreateNextAppLaunchOrdinal(
const syncer::StringOrdinal& page_ordinal) const {
return syncer::StringOrdinal(kNextApp);
}
-syncer::StringOrdinal AppShellAppSorting::CreateFirstAppPageOrdinal() const {
+syncer::StringOrdinal ShellAppSorting::CreateFirstAppPageOrdinal() const {
return syncer::StringOrdinal(kFirstPage);
}
-syncer::StringOrdinal AppShellAppSorting::GetNaturalAppPageOrdinal() const {
+syncer::StringOrdinal ShellAppSorting::GetNaturalAppPageOrdinal() const {
return syncer::StringOrdinal(kFirstPage);
}
-syncer::StringOrdinal AppShellAppSorting::GetPageOrdinal(
+syncer::StringOrdinal ShellAppSorting::GetPageOrdinal(
const std::string& extension_id) const {
return syncer::StringOrdinal(kFirstPage);
}
-void AppShellAppSorting::SetPageOrdinal(
+void ShellAppSorting::SetPageOrdinal(
const std::string& extension_id,
const syncer::StringOrdinal& new_page_ordinal) {
}
-void AppShellAppSorting::ClearOrdinals(const std::string& extension_id) {
+void ShellAppSorting::ClearOrdinals(const std::string& extension_id) {
}
-int AppShellAppSorting::PageStringOrdinalAsInteger(
+int ShellAppSorting::PageStringOrdinalAsInteger(
const syncer::StringOrdinal& page_ordinal) const {
return 0;
}
-syncer::StringOrdinal AppShellAppSorting::PageIntegerAsStringOrdinal(
+syncer::StringOrdinal ShellAppSorting::PageIntegerAsStringOrdinal(
size_t page_index) {
return syncer::StringOrdinal(kFirstPage);
}
-void AppShellAppSorting::MarkExtensionAsHidden(
+void ShellAppSorting::MarkExtensionAsHidden(
const std::string& extension_id) {
}
« no previous file with comments | « apps/shell/shell_app_sorting.h ('k') | apps/shell/shell_browser_context.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698