blob: c006b4f092ab1406d1f79b0d9f14b8f1dc989567 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
// Copyright (c) 2011 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/continue_window.h"
namespace remoting {
const char ContinueWindow::kTitle[] = "Remoting";
const char ContinueWindow::kMessage[] =
"You are currently sharing this machine with another user. "
"Please confirm that you want to continue sharing.";
const char ContinueWindow::kDefaultButtonText[] = "Continue";
const char ContinueWindow::kCancelButtonText[] = "Stop";
}
|