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

Unified Diff: chrome/browser/chromeos/dbus/image_burner_client.cc

Issue 9546013: Move IsRunningOnChromeOS to base/chromeos (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: chromeos_version,sync,cleanup Created 8 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: chrome/browser/chromeos/dbus/image_burner_client.cc
diff --git a/chrome/browser/chromeos/dbus/image_burner_client.cc b/chrome/browser/chromeos/dbus/image_burner_client.cc
index 49ea93f8510db5205e0f08e987a684e4c2d0bbd0..776f7ecdf82c25fc350e3de87f6923aff1507762 100644
--- a/chrome/browser/chromeos/dbus/image_burner_client.cc
+++ b/chrome/browser/chromeos/dbus/image_burner_client.cc
@@ -5,8 +5,8 @@
#include "chrome/browser/chromeos/dbus/image_burner_client.h"
#include "base/bind.h"
+#include "base/chromeos/chromeos_version.h"
#include "base/compiler_specific.h"
-#include "chrome/browser/chromeos/system/runtime_environment.h"
#include "dbus/bus.h"
#include "dbus/message.h"
#include "dbus/object_path.h"
@@ -157,7 +157,7 @@ ImageBurnerClient::~ImageBurnerClient() {
// static
ImageBurnerClient* ImageBurnerClient::Create(dbus::Bus* bus) {
- if (system::runtime_environment::IsRunningOnChromeOS()) {
+ if (base::chromeos::IsRunningOnChromeOS()) {
return new ImageBurnerClientImpl(bus);
} else {
return new ImageBurnerClientStubImpl();
« no previous file with comments | « chrome/browser/chromeos/dbus/cryptohome_client.cc ('k') | chrome/browser/chromeos/dbus/introspectable_client.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698