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

Unified Diff: extensions/browser/test_runtime_api_delegate.cc

Issue 1055673002: [Extensions API] Remove inline enums (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 5 years, 9 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/test_runtime_api_delegate.cc
diff --git a/extensions/browser/test_runtime_api_delegate.cc b/extensions/browser/test_runtime_api_delegate.cc
index 9394050dbcf16a08f4fc1af2f45eead67cd7653c..3051bec1a45107a1513f21c9dd3aceed24a3c31a 100644
--- a/extensions/browser/test_runtime_api_delegate.cc
+++ b/extensions/browser/test_runtime_api_delegate.cc
@@ -42,7 +42,7 @@ void TestRuntimeAPIDelegate::OpenURL(const GURL& uninstall_url) {
bool TestRuntimeAPIDelegate::GetPlatformInfo(PlatformInfo* info) {
// TODO(rockot): This probably isn't right. Maybe this delegate should just
// support manual PlatformInfo override for tests if necessary.
- info->os = PlatformInfo::OS_CROS_;
+ info->os = core_api::runtime::PLATFORM_INFO_OS_CROS;
return true;
}

Powered by Google App Engine
This is Rietveld 408576698