Index: remoting/host/ui_strings.cc |
diff --git a/remoting/host/ui_strings.cc b/remoting/host/ui_strings.cc |
deleted file mode 100644 |
index e59dd5c6351620d98b9f13268cab7b69f3b1e9a8..0000000000000000000000000000000000000000 |
--- a/remoting/host/ui_strings.cc |
+++ /dev/null |
@@ -1,34 +0,0 @@ |
-// Copyright (c) 2012 The Chromium Authors. All rights reserved. |
-// Use of this source code is governed by a BSD-style license that can be |
-// found in the LICENSE file. |
- |
-#include "remoting/host/ui_strings.h" |
- |
-#include "base/strings/utf_string_conversions.h" |
- |
-namespace remoting { |
- |
-UiStrings::UiStrings() : |
- direction(LTR), |
- product_name(ASCIIToUTF16("Chromoting")), |
- // Audio is currently only supported for Me2Me, and not on Mac. However, |
- // for IT2Me, these strings are replaced during l10n, so it's fine to |
- // hard-code a mention of audio here. |
-#if defined(OS_MACOSX) |
- disconnect_message( |
- ASCIIToUTF16("Your desktop is currently shared with $1.")), |
-#else |
- disconnect_message(ASCIIToUTF16( |
- "Your desktop and any audio output are currently shared with $1.")), |
-#endif |
- disconnect_button_text(ASCIIToUTF16("Disconnect")), |
- continue_prompt(ASCIIToUTF16( |
- "You are currently sharing this machine with another user. " |
- "Please confirm that you want to continue sharing.")), |
- continue_button_text(ASCIIToUTF16("Continue")), |
- stop_sharing_button_text(ASCIIToUTF16("Stop Sharing")) { |
-} |
- |
-UiStrings::~UiStrings() {} |
- |
-} // namespace remoting |