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

Unified Diff: extensions/shell/browser/shell_runtime_api_delegate.cc

Issue 1226353004: Generate all extension schema namespaces as "api" and instead vary the generated bundle names. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: rebase Created 5 years, 5 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
« no previous file with comments | « extensions/shell/browser/shell_runtime_api_delegate.h ('k') | extensions/shell/common/api/BUILD.gn » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: extensions/shell/browser/shell_runtime_api_delegate.cc
diff --git a/extensions/shell/browser/shell_runtime_api_delegate.cc b/extensions/shell/browser/shell_runtime_api_delegate.cc
index 668fcce82dfadc82fc58466ed682249de94b4490..77dacab4db1406837cb70e451327bbcce7c177a4 100644
--- a/extensions/shell/browser/shell_runtime_api_delegate.cc
+++ b/extensions/shell/browser/shell_runtime_api_delegate.cc
@@ -11,7 +11,7 @@
#include "chromeos/dbus/power_manager_client.h"
#endif
-using extensions::core_api::runtime::PlatformInfo;
+using extensions::api::runtime::PlatformInfo;
namespace extensions {
@@ -46,9 +46,9 @@ void ShellRuntimeAPIDelegate::OpenURL(const GURL& uninstall_url) {
bool ShellRuntimeAPIDelegate::GetPlatformInfo(PlatformInfo* info) {
#if defined(OS_CHROMEOS)
- info->os = core_api::runtime::PLATFORM_OS_CROS;
+ info->os = api::runtime::PLATFORM_OS_CROS;
#elif defined(OS_LINUX)
- info->os = core_api::runtime::PLATFORM_OS_LINUX;
+ info->os = api::runtime::PLATFORM_OS_LINUX;
#endif
return true;
}
« no previous file with comments | « extensions/shell/browser/shell_runtime_api_delegate.h ('k') | extensions/shell/common/api/BUILD.gn » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698