blob: 8f4ec28b43d52cf43042b8ba7141664c9276c71b [file] [log] [blame]
// Copyright 2019 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.
package org.chromium.chromoting;
/**
* The Activity for showing the privacy policy.
*/
public class PrivacyPolicyActivity extends WebViewActivity {
private static final String POLICY_URL = "https://policies.google.com/privacy";
public PrivacyPolicyActivity() {
super(R.string.privacy_policy, POLICY_URL);
}
}