diff options
Diffstat (limited to 'remoting')
-rw-r--r-- | remoting/client/chromoting_stats.cc | 4 | ||||
-rw-r--r-- | remoting/protocol/jingle_messages.cc | 4 |
2 files changed, 4 insertions, 4 deletions
diff --git a/remoting/client/chromoting_stats.cc b/remoting/client/chromoting_stats.cc index 604319d..71b7199 100644 --- a/remoting/client/chromoting_stats.cc +++ b/remoting/client/chromoting_stats.cc @@ -7,10 +7,10 @@ namespace { // The default window of bandwidth and frame rate in seconds. -static const int kTimeWindow = 3; +const int kTimeWindow = 3; // We take the last 10 latency numbers and report the average. -static const int kLatencyWindow = 10; +const int kLatencyWindow = 10; } // namespace diff --git a/remoting/protocol/jingle_messages.cc b/remoting/protocol/jingle_messages.cc index 1e70a2b..9684cab 100644 --- a/remoting/protocol/jingle_messages.cc +++ b/remoting/protocol/jingle_messages.cc @@ -55,7 +55,7 @@ T NameToValue(const NameMapElement<T> map[], size_t map_size, return default_value; } -static const NameMapElement<JingleMessage::ActionType> kActionTypes[] = { +const NameMapElement<JingleMessage::ActionType> kActionTypes[] = { { JingleMessage::SESSION_INITIATE, "session-initiate" }, { JingleMessage::SESSION_ACCEPT, "session-accept" }, { JingleMessage::SESSION_TERMINATE, "session-terminate" }, @@ -63,7 +63,7 @@ static const NameMapElement<JingleMessage::ActionType> kActionTypes[] = { { JingleMessage::TRANSPORT_INFO, "transport-info" }, }; -static const NameMapElement<JingleMessage::Reason> kReasons[] = { +const NameMapElement<JingleMessage::Reason> kReasons[] = { { JingleMessage::SUCCESS, "success" }, { JingleMessage::DECLINE, "decline" }, { JingleMessage::GENERAL_ERROR, "general-error" }, |