| Index: chrome/app/chrome_main_delegate.cc
|
| diff --git a/chrome/app/chrome_main_delegate.cc b/chrome/app/chrome_main_delegate.cc
|
| index 5189e6b5414cbd64fe1c3eefe85b86150591addf..a55ae62a9c29af2a11591a5911630ec77c41df5b 100644
|
| --- a/chrome/app/chrome_main_delegate.cc
|
| +++ b/chrome/app/chrome_main_delegate.cc
|
| @@ -981,12 +981,12 @@ ChromeMainDelegate::CreateContentUtilityClient() {
|
|
|
| bool ChromeMainDelegate::ShouldEnableProfilerRecording() {
|
| switch (chrome::VersionInfo::GetChannel()) {
|
| - case chrome::VersionInfo::CHANNEL_UNKNOWN:
|
| - case chrome::VersionInfo::CHANNEL_CANARY:
|
| + case version_info::CHANNEL_UNKNOWN:
|
| + case version_info::CHANNEL_CANARY:
|
| return true;
|
| - case chrome::VersionInfo::CHANNEL_DEV:
|
| - case chrome::VersionInfo::CHANNEL_BETA:
|
| - case chrome::VersionInfo::CHANNEL_STABLE:
|
| + case version_info::CHANNEL_DEV:
|
| + case version_info::CHANNEL_BETA:
|
| + case version_info::CHANNEL_STABLE:
|
| default:
|
| // Don't enable instrumentation.
|
| return false;
|
|
|