| OLD | NEW |
| 1 // Copyright (c) 2011 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2011 The Chromium Authors. All rights reserved. |
| 2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be |
| 3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
| 4 | 4 |
| 5 #include "remoting/host/continue_window.h" | 5 #include "remoting/host/continue_window.h" |
| 6 | 6 |
| 7 // TODO(jamiewalch): Remove this file once all platforms pick up the |
| 8 // localized versions from ui_strings.h |
| 9 |
| 7 namespace remoting { | 10 namespace remoting { |
| 8 | |
| 9 const char ContinueWindow::kTitle[] = "Remoting"; | 11 const char ContinueWindow::kTitle[] = "Remoting"; |
| 10 const char ContinueWindow::kMessage[] = | 12 const char ContinueWindow::kMessage[] = |
| 11 "You are currently sharing this machine with another user. " | 13 "You are currently sharing this machine with another user. " |
| 12 "Please confirm that you want to continue sharing."; | 14 "Please confirm that you want to continue sharing."; |
| 13 const char ContinueWindow::kDefaultButtonText[] = "Continue"; | 15 const char ContinueWindow::kDefaultButtonText[] = "Continue"; |
| 14 const char ContinueWindow::kCancelButtonText[] = "Stop"; | 16 const char ContinueWindow::kCancelButtonText[] = "Stop"; |
| 15 | |
| 16 } | 17 } |
| OLD | NEW |