Reassign all of earthdok's TODOs and remove from OWNERS.

TBR=jln@chromium.org,thakis@chromium.org

Review URL: https://codereview.chromium.org/1646813004

Cr-Original-Commit-Position: refs/heads/master@{#372260}
Cr-Mirrored-From: https://chromium.googlesource.com/chromium/src
Cr-Mirrored-Commit: cee690634a79075f4128d9644589b7f43269ef4e
diff --git a/instrumented_libraries.gyp b/instrumented_libraries.gyp
index 54aefa8..e6dbe69 100644
--- a/instrumented_libraries.gyp
+++ b/instrumented_libraries.gyp
@@ -530,7 +530,7 @@
     {
       'package_name': 'nss',
       'dependencies=': [
-        # TODO(earthdok): get rid of this dependency
+        # TODO(eugenis): get rid of this dependency
         '<(_sanitizer_type)-libnspr4',
       ],
       'patch': 'patches/nss.diff',
@@ -630,7 +630,7 @@
           '--disable-static',
           # Without this flag there's a linking step that doesn't honor LDFLAGS
           # and fails.
-          # TODO(earthdok): find a better fix.
+          # TODO(eugenis): find a better fix.
           '--disable-gudev'
       ],
       'pre_build': 'scripts/pre-build/udev.sh',
@@ -726,7 +726,7 @@
           '--enable-gtk-doc',
           # --enable-introspection introduces a build step that attempts to run
           # a just-built binary and crashes. Vala requires introspection.
-          # TODO(earthdok): find a better fix.
+          # TODO(eugenis): find a better fix.
           '--disable-introspection',
           '--disable-vala',
       ],
diff --git a/scripts/download_build_install.py b/scripts/download_build_install.py
index 56c4014..9902b2b 100755
--- a/scripts/download_build_install.py
+++ b/scripts/download_build_install.py
@@ -183,7 +183,7 @@
       self.shell_call('rm -rf %s' % self._working_dir)
 
   def fix_rpaths(self, directory):
-    # TODO(earthdok): reimplement fix_rpaths.sh in Python.
+    # TODO(eugenis): reimplement fix_rpaths.sh in Python.
     script = real_path('scripts/fix_rpaths.sh')
     self.shell_call("%s %s" % (script, directory))
 
diff --git a/scripts/fix_rpaths.sh b/scripts/fix_rpaths.sh
index 578243f..51362a8 100755
--- a/scripts/fix_rpaths.sh
+++ b/scripts/fix_rpaths.sh
@@ -11,7 +11,7 @@
   if [ -w "$1" ]
   then
     # Only attempt to fix RPATH if the entry actually exists.
-    # FIXME(earthdok): find out why zlib1g on Precise doesn't get RPATH set.
+    # FIXME(eugenis): find out why zlib1g on Precise doesn't get RPATH set.
     if chrpath -l $1
     then
       echo "fix_rpaths.sh: fixing $1"
@@ -19,7 +19,7 @@
         | sed s/RPATH=//g) $1
     fi
   else
-    # FIXME(earthdok): libcups2 DSOs are created non-writable, causing this
+    # FIXME(eugenis): libcups2 DSOs are created non-writable, causing this
     # script to fail. As a temporary measure, ignore non-writable files.
     echo "fix_rpaths.sh: skipping non-writable file $1"
   fi
diff --git a/scripts/install-build-deps.sh b/scripts/install-build-deps.sh
index 7b8c3cb..d3e5dfc 100755
--- a/scripts/install-build-deps.sh
+++ b/scripts/install-build-deps.sh
@@ -12,7 +12,7 @@
   sudo goobuntu-config set include_deb_src true
 fi
 
-# TODO(earthdok): find a way to pull the list from the build config.
+# TODO(eugenis): find a way to pull the list from the build config.
 common_packages="\
 atk1.0 \
 dee \
diff --git a/standard_instrumented_package_target.gypi b/standard_instrumented_package_target.gypi
index db715be..2d8ed19 100644
--- a/standard_instrumented_package_target.gypi
+++ b/standard_instrumented_package_target.gypi
@@ -12,7 +12,7 @@
     {
       'action_name': '<(_package_name)',
       'inputs': [
-        # TODO(earthdok): reintroduce some sort of dependency
+        # TODO(eugenis): reintroduce some sort of dependency
         # See http://crbug.com/343515
         #'download_build_install.py',
       ],