Comments Style:  s/skbug.com/bug.skia.org/
DOCS_PREVIEW= https://skia.org/?cl=1432503003

Review URL: https://codereview.chromium.org/1432503003
diff --git a/src/gpu/GrBufferAllocPool.cpp b/src/gpu/GrBufferAllocPool.cpp
index 210ab44..73b70bf 100644
--- a/src/gpu/GrBufferAllocPool.cpp
+++ b/src/gpu/GrBufferAllocPool.cpp
@@ -320,7 +320,7 @@
     GrResourceProvider* rp = fGpu->getContext()->resourceProvider();
 
     static const GrResourceProvider::BufferUsage kUsage = GrResourceProvider::kDynamic_BufferUsage;
-    // Shouldn't have to use this flag (http://skbug.com/4156)
+    // Shouldn't have to use this flag (https://bug.skia.org/4156)
     static const uint32_t kFlags = GrResourceProvider::kNoPendingIO_Flag;
     if (kIndex_BufferType == fBufferType) {
         return rp->createIndexBuffer(size, kUsage, kFlags);
diff --git a/src/gpu/GrClipMaskManager.cpp b/src/gpu/GrClipMaskManager.cpp
index 076871c..3e802d7 100644
--- a/src/gpu/GrClipMaskManager.cpp
+++ b/src/gpu/GrClipMaskManager.cpp
@@ -594,7 +594,7 @@
                                                  texture, translate, element);
             if (Element::kRect_Type != element->getType() && !pr) {
                 // useSWOnlyPath should now filter out all cases where gpu-side mask merging would
-                // be performed (i.e., pr would be NULL for a non-rect path). See skbug.com/4519
+                // be performed (i.e., pr would be NULL for a non-rect path). See https://bug.skia.org/4519
                 // for rationale and details.
                 SkASSERT(0);
                 continue;
diff --git a/src/gpu/GrResourceProvider.cpp b/src/gpu/GrResourceProvider.cpp
index 5fa4e4b..3156814 100644
--- a/src/gpu/GrResourceProvider.cpp
+++ b/src/gpu/GrResourceProvider.cpp
@@ -158,7 +158,7 @@
 
     // We don't want to flush the context so we claim we're in the middle of flushing so as to
     // guarantee we do not recieve a texture with pending IO
-    // TODO: Determine how to avoid having to do this. (http://skbug.com/4156)
+    // TODO: Determine how to avoid having to do this. (https://bug.skia.org/4156)
     static const uint32_t kFlags = GrResourceProvider::kNoPendingIO_Flag;
     GrTexture* texture = this->createApproxTexture(desc, kFlags);
     if (!texture) {
diff --git a/src/gpu/GrResourceProvider.h b/src/gpu/GrResourceProvider.h
index a709c70..6c57371 100644
--- a/src/gpu/GrResourceProvider.h
+++ b/src/gpu/GrResourceProvider.h
@@ -31,7 +31,7 @@
  *
  * This currently inherits from GrTextureProvider non-publically to force callers to provider
  * make a flags (pendingIO) decision and not use the GrTP methods that don't take flags. This
- * can be relaxed once http://skbug.com/4156 is fixed.
+ * can be relaxed once https://bug.skia.org/4156 is fixed.
  */
 class GrResourceProvider : protected GrTextureProvider {
 public:
@@ -98,7 +98,7 @@
          *  set when accessing resources during a GrDrawTarget flush. This includes the execution of
          *  GrBatch objects. The reason is that these memory operations are done immediately and
          *  will occur out of order WRT the operations being flushed.
-         *  Make this automatic: http://skbug.com/4156
+         *  Make this automatic: https://bug.skia.org/4156
          */
         kNoPendingIO_Flag = kNoPendingIO_ScratchTextureFlag,
     };
diff --git a/src/gpu/effects/GrConvexPolyEffect.cpp b/src/gpu/effects/GrConvexPolyEffect.cpp
index d22a347..b37964d 100644
--- a/src/gpu/effects/GrConvexPolyEffect.cpp
+++ b/src/gpu/effects/GrConvexPolyEffect.cpp
@@ -212,7 +212,7 @@
         fsBuilder->codeAppend("\t\talpha *= edge;\n");
     }
 
-    // Woe is me. See skbug.com/2149.
+    // Woe is me. See https://bug.skia.org/2149 .
     if (kTegra2_GrGLRenderer == args.fBuilder->ctxInfo().renderer()) {
         fsBuilder->codeAppend("\t\tif (-1.0 == alpha) {\n\t\t\tdiscard;\n\t\t}\n");
     }
diff --git a/src/gpu/gl/GrGLCaps.cpp b/src/gpu/gl/GrGLCaps.cpp
index c6a42cf..f5ce0af 100644
--- a/src/gpu/gl/GrGLCaps.cpp
+++ b/src/gpu/gl/GrGLCaps.cpp
@@ -164,7 +164,7 @@
         // All the above srgb extensions support toggling srgb writes
         fSRGBWriteControl = srgbSupport;
     } else {
-        // See http://skbug.com/4148 for PowerVR issue.
+        // See https://bug.skia.org/4148 for PowerVR issue.
         srgbSupport = kPowerVRRogue_GrGLRenderer != ctxInfo.renderer() &&
                       (ctxInfo.version() >= GR_GL_VER(3,0) || ctxInfo.hasExtension("GL_EXT_sRGB"));
         // ES through 3.1 requires EXT_srgb_write_control to support toggling
@@ -262,7 +262,7 @@
         }
     }
 
-#if 0 // Disabled due to http://skbug.com/4454
+#if 0 // Disabled due to https://bug.skia.org/4454
     fBindUniformLocationSupport = ctxInfo.hasExtension("GL_CHROMIUM_bind_uniform_location");
 #else
     fBindUniformLocationSupport = false;
@@ -789,7 +789,7 @@
     fConfigTextureSupport[kRGBA_4444_GrPixelConfig] = true;
     fConfigTextureSupport[kRGBA_8888_GrPixelConfig] = true;
 
-    // Disable this for now, while we investigate skbug.com/4333
+    // Disable this for now, while we investigate https://bug.skia.org/4333
     if (false) {
         // Check for 8-bit palette..
         GrGLint numFormats;