summaryrefslogtreecommitdiffstats
path: root/remoting
diff options
context:
space:
mode:
Diffstat (limited to 'remoting')
-rw-r--r--remoting/android/java/src/org/chromium/chromoting/Chromoting.java2
-rw-r--r--remoting/android/java/src/org/chromium/chromoting/Desktop.java2
-rw-r--r--remoting/webapp/crd/html/dialog_client_host_needs_upgrade.html2
-rw-r--r--remoting/webapp/crd/html/dialog_client_pin_prompt.html2
-rw-r--r--remoting/webapp/crd/html/dialog_client_unconnected.html2
-rw-r--r--remoting/webapp/crd/html/dialog_host_setup.html2
-rw-r--r--remoting/webapp/crd/js/feedback.js7
7 files changed, 9 insertions, 10 deletions
diff --git a/remoting/android/java/src/org/chromium/chromoting/Chromoting.java b/remoting/android/java/src/org/chromium/chromoting/Chromoting.java
index 72e8c2a..ac8e9e2 100644
--- a/remoting/android/java/src/org/chromium/chromoting/Chromoting.java
+++ b/remoting/android/java/src/org/chromium/chromoting/Chromoting.java
@@ -57,7 +57,7 @@ public class Chromoting extends ActionBarActivity implements JniInterface.Connec
/** Web page to be displayed in the Help screen when launched from this activity. */
private static final String HELP_URL =
- "http://support.google.com/chrome/?p=mobile_crd_hostslist";
+ "https://support.google.com/chrome/?p=mobile_crd_hostslist";
/** Web page to be displayed when user triggers the hyperlink for setting up hosts. */
private static final String HOST_SETUP_URL =
diff --git a/remoting/android/java/src/org/chromium/chromoting/Desktop.java b/remoting/android/java/src/org/chromium/chromoting/Desktop.java
index b536577..ac61f24 100644
--- a/remoting/android/java/src/org/chromium/chromoting/Desktop.java
+++ b/remoting/android/java/src/org/chromium/chromoting/Desktop.java
@@ -27,7 +27,7 @@ import java.util.TreeSet;
public class Desktop extends ActionBarActivity implements View.OnSystemUiVisibilityChangeListener {
/** Web page to be displayed in the Help screen when launched from this activity. */
private static final String HELP_URL =
- "http://support.google.com/chrome/?p=mobile_crd_connecthost";
+ "https://support.google.com/chrome/?p=mobile_crd_connecthost";
/** The surface that displays the remote host's desktop feed. */
private DesktopView mRemoteHostDesktop;
diff --git a/remoting/webapp/crd/html/dialog_client_host_needs_upgrade.html b/remoting/webapp/crd/html/dialog_client_host_needs_upgrade.html
index 5a9d9c8..fe7ba6b 100644
--- a/remoting/webapp/crd/html/dialog_client_host_needs_upgrade.html
+++ b/remoting/webapp/crd/html/dialog_client_host_needs_upgrade.html
@@ -9,7 +9,7 @@ found in the LICENSE file.
</div>
<div class="message">
<span i18n-content="HOST_NEEDS_UPDATE_DETAIL"></span>
- <a href="http://support.google.com/chrome/bin/answer.py?hl=en&answer=1649523"
+ <a href="https://support.google.com/chrome/answer/1649523"
target="_blank"
i18n-content="LEARN_HOW"></a>
</div>
diff --git a/remoting/webapp/crd/html/dialog_client_pin_prompt.html b/remoting/webapp/crd/html/dialog_client_pin_prompt.html
index 1688ff7..66aa3cd 100644
--- a/remoting/webapp/crd/html/dialog_client_pin_prompt.html
+++ b/remoting/webapp/crd/html/dialog_client_pin_prompt.html
@@ -52,7 +52,7 @@ found in the LICENSE file.
class="information-box centered"
hidden>
<span i18n-content="WARNING_NOT_WINDOWED"></span>
- <a href="http://support.google.com/chrome/bin/answer.py?hl=en&answer=1649523"
+ <a href="https://support.google.com/chrome/answer/1649523"
target="_blank"
i18n-content="LEARN_HOW"></a>
</div> <!-- startup-mode-box-it2me -->
diff --git a/remoting/webapp/crd/html/dialog_client_unconnected.html b/remoting/webapp/crd/html/dialog_client_unconnected.html
index fa91bca..a8c4976 100644
--- a/remoting/webapp/crd/html/dialog_client_unconnected.html
+++ b/remoting/webapp/crd/html/dialog_client_unconnected.html
@@ -36,7 +36,7 @@ found in the LICENSE file.
<div id="startup-mode-box-it2me" class="information-box" hidden>
<span i18n-content="WARNING_NOT_WINDOWED"></span>
- <a href="http://support.google.com/chrome/bin/answer.py?hl=en&answer=1649523"
+ <a href="https://support.google.com/chrome/answer/1649523"
target="_blank"
i18n-content="LEARN_HOW"></a>
</div> <!-- startup-mode-box-it2me -->
diff --git a/remoting/webapp/crd/html/dialog_host_setup.html b/remoting/webapp/crd/html/dialog_host_setup.html
index 48e6a20..8d75ac1 100644
--- a/remoting/webapp/crd/html/dialog_host_setup.html
+++ b/remoting/webapp/crd/html/dialog_host_setup.html
@@ -15,7 +15,7 @@ found in the LICENSE file.
<span i18n-content="HOST_SETUP_DIALOG_DESCRIPTION"
i18n-value-1="<b>"
i18n-value-2="</b>"></span>
- <a href="http://support.google.com/chrome/bin/answer.py?hl=en&answer=1649523"
+ <a href="https://support.google.com/chrome/answer/1649523"
target="_blank"
i18n-content="WHY_IS_THIS_SAFE"></a>
</p>
diff --git a/remoting/webapp/crd/js/feedback.js b/remoting/webapp/crd/js/feedback.js
index e738ecf..fe71cde 100644
--- a/remoting/webapp/crd/js/feedback.js
+++ b/remoting/webapp/crd/js/feedback.js
@@ -16,9 +16,8 @@ var remoting = remoting || {};
*/
remoting.manageHelpAndFeedback = function(container) {
var showHelp = function() {
- window.open('https://www.google.com/support/chrome/bin/answer.py?' +
- 'answer=1649523');
- }
+ window.open('https://support.google.com/chrome/answer/1649523');
+ };
var helpButton = container.querySelector('.menu-help');
base.debug.assert(helpButton != null);
helpButton.addEventListener('click', showHelp, false);
@@ -51,4 +50,4 @@ remoting.sendFeedback_ = function() {
};
var kFeedbackExtensionId = 'gfdkimpbcpahaombhbimeihdjnejgicl';
chrome.runtime.sendMessage(kFeedbackExtensionId, message, function() {});
-}; \ No newline at end of file
+};