Bug 1293950 - Update mozilla wiki link in AccessibleCaret headers. r?mtseng draft
authorTing-Yu Lin <aethanyc@gmail.com>
Wed, 10 Aug 2016 15:46:27 +0800
changeset 399016 2ccc2d01dbf03d707361136a326955f4bd5437c5
parent 398252 720b5d2c84d5b253d4dfde4897e13384dc97a46a
child 527815 0cce966b1d894cd432f51ba90c8da48eff38916e
push id25707
push userbmo:tlin@mozilla.com
push dateWed, 10 Aug 2016 07:49:08 +0000
reviewersmtseng
bugs1293950
milestone51.0a1
Bug 1293950 - Update mozilla wiki link in AccessibleCaret headers. r?mtseng Change only comments so DONTBUILD (NPOTB). MozReview-Commit-ID: 3UOtYyOxg3
layout/base/AccessibleCaret.h
layout/base/AccessibleCaretEventHub.h
layout/base/AccessibleCaretManager.h
--- a/layout/base/AccessibleCaret.h
+++ b/layout/base/AccessibleCaret.h
@@ -33,17 +33,18 @@ namespace mozilla {
 // All the rect or point are relative to root frame except being specified
 // explicitly.
 //
 // None of the methods in AccessibleCaret will flush layout or style. To ensure
 // that SetPosition() works correctly, the caller must make sure the layout is
 // up to date.
 //
 // Please see the wiki page for more information.
-// https://wiki.mozilla.org/Copy_n_Paste
+// https://wiki.mozilla.org/AccessibleCaret
+//
 class AccessibleCaret
 {
 public:
   explicit AccessibleCaret(nsIPresShell* aPresShell);
   virtual ~AccessibleCaret();
 
   // This enumeration representing the visibility and visual style of an
   // AccessibleCaret.
--- a/layout/base/AccessibleCaretEventHub.h
+++ b/layout/base/AccessibleCaretEventHub.h
@@ -53,17 +53,17 @@ class WidgetTouchEvent;
 // "layout.accessiblecaret.use_long_tap_injector" for the fake long-tap events.
 //
 // State transition diagram:
 // http://hg.mozilla.org/mozilla-central/raw-file/default/layout/base/doc/AccessibleCaretEventHubStates.png
 // Source code of the diagram:
 // http://hg.mozilla.org/mozilla-central/file/default/layout/base/doc/AccessibleCaretEventHubStates.dot
 //
 // Please see the wiki page for more information.
-// https://wiki.mozilla.org/Copy_n_Paste
+// https://wiki.mozilla.org/AccessibleCaret
 //
 class AccessibleCaretEventHub : public nsIReflowObserver,
                                 public nsIScrollObserver,
                                 public nsISelectionListener,
                                 public nsSupportsWeakReference
 {
 public:
   explicit AccessibleCaretEventHub(nsIPresShell* aPresShell);
--- a/layout/base/AccessibleCaretManager.h
+++ b/layout/base/AccessibleCaretManager.h
@@ -37,17 +37,17 @@ class Selection;
 // All codes needed to interact with PresShell, Selection, and AccessibleCaret
 // should be written in AccessibleCaretManager.
 //
 // None the public methods in AccessibleCaretManager will flush layout or style
 // prior to performing its task. The caller must ensure the layout is up to
 // date.
 //
 // Please see the wiki page for more information.
-// https://wiki.mozilla.org/Copy_n_Paste
+// https://wiki.mozilla.org/AccessibleCaret
 //
 class AccessibleCaretManager
 {
 public:
   explicit AccessibleCaretManager(nsIPresShell* aPresShell);
   virtual ~AccessibleCaretManager();
 
   // Called by AccessibleCaretEventHub to inform us that PresShell is destroyed.