| Index: athena/common/switches.h
|
| diff --git a/components/feedback/feedback_switches.cc b/athena/common/switches.h
|
| similarity index 54%
|
| copy from components/feedback/feedback_switches.cc
|
| copy to athena/common/switches.h
|
| index 74f1bec27ce1771c7f207378af34e8a76c4167cf..ce68164e8125168b1cacfec9d5a3c05d32bb5eba 100644
|
| --- a/components/feedback/feedback_switches.cc
|
| +++ b/athena/common/switches.h
|
| @@ -2,12 +2,15 @@
|
| // Use of this source code is governed by a BSD-style license that can be
|
| // found in the LICENSE file.
|
|
|
| -#include "components/feedback/feedback_switches.h"
|
| +#ifndef ATHENA_COMMON_SWITCHES_H_
|
| +#define ATHENA_COMMON_SWITCHES_H_
|
|
|
| +namespace athena {
|
| namespace switches {
|
|
|
| -// Alternative feedback server to use when submitting user feedback
|
| -const char kFeedbackServer[] = "feedback-server";
|
| +bool IsDebugAcceleratorsEnabled();
|
|
|
| } // namespace switches
|
| +} // namespace athena
|
|
|
| +#endif // ATHENA_COMMON_SWITCHES_H_
|
|
|