Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(76)

Side by Side Diff: remoting/host/continue_window.cc

Issue 7635012: Host process i18n and Linux implementation. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Rebase Created 9 years, 4 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
OLDNEW
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 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698