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

Unified Diff: chrome/browser/chromeos/dbus/speech_synthesizer_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/speech_synthesizer_client.cc
diff --git a/chrome/browser/chromeos/dbus/speech_synthesizer_client.cc b/chrome/browser/chromeos/dbus/speech_synthesizer_client.cc
index 5c474c8b35bd06ca268bab60e5f0e2ba2f4dd27d..b4e89ffcb26481aa65b49421ba50082d659ea026 100644
--- a/chrome/browser/chromeos/dbus/speech_synthesizer_client.cc
+++ b/chrome/browser/chromeos/dbus/speech_synthesizer_client.cc
@@ -5,8 +5,8 @@
#include "chrome/browser/chromeos/dbus/speech_synthesizer_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"
@@ -126,7 +126,7 @@ SpeechSynthesizerClient::~SpeechSynthesizerClient() {
// static
SpeechSynthesizerClient* SpeechSynthesizerClient::Create(dbus::Bus* bus) {
- if (system::runtime_environment::IsRunningOnChromeOS()) {
+ if (base::chromeos::IsRunningOnChromeOS()) {
return new SpeechSynthesizerClientImpl(bus);
} else {
return new SpeechSynthesizerClientStubImpl();
« no previous file with comments | « chrome/browser/chromeos/dbus/session_manager_client.cc ('k') | chrome/browser/chromeos/dbus/update_engine_client.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698