diff options
author | nduca@chromium.org <nduca@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2013-06-20 20:35:40 +0000 |
---|---|---|
committer | nduca@chromium.org <nduca@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2013-06-20 20:35:40 +0000 |
commit | 32d82030abe7436d1130a45489d56eeedaf8411e (patch) | |
tree | 079d90cf93f567e8953fb3be019ace33f0e420af | |
parent | e671e43a899d88defb94244882c8e9adf99caa82 (diff) | |
download | chromium_src-32d82030abe7436d1130a45489d56eeedaf8411e.zip chromium_src-32d82030abe7436d1130a45489d56eeedaf8411e.tar.gz chromium_src-32d82030abe7436d1130a45489d56eeedaf8411e.tar.bz2 |
[telemetry] Make presubmit fail if docs are out of date
R=tonyg@chromium.org
BUG=251801
Review URL: https://codereview.chromium.org/17447010
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@207545 0039d316-1c4b-4281-b951-d872f2087c98
111 files changed, 270 insertions, 171 deletions
diff --git a/tools/telemetry/PRESUBMIT.py b/tools/telemetry/PRESUBMIT.py index 6866cc2..1d0dfad 100644 --- a/tools/telemetry/PRESUBMIT.py +++ b/tools/telemetry/PRESUBMIT.py @@ -9,26 +9,44 @@ PYLINT_DISABLED_WARNINGS = ['R0923', 'R0201', 'E1101'] def _CommonChecks(input_api, output_api): results = [] - old_sys_path = sys.path - try: - sys.path = [os.path.join('..', 'telemetry')] + sys.path - results.extend(input_api.canned_checks.RunPylint( + + from build import update_docs + if update_docs.IsUpdateDocsNeeded(): + update_docs_path = os.path.join( + input_api.PresubmitLocalPath(), 'update_docs') + assert os.path.exists(update_docs_path) + results.append(output_api.PresubmitError( + 'Docs are stale. Please run:\n' + + '$ %s' % os.path.abspath(update_docs_path))) + + results.extend(input_api.canned_checks.RunPylint( input_api, output_api, black_list=PYLINT_BLACKLIST, disabled_warnings=PYLINT_DISABLED_WARNINGS)) - finally: - sys.path = old_sys_path + return results +def GetPathsToPrepend(input_api): + return [input_api.PresubmitLocalPath()] +def RunWithPrependedPath(prepended_path, fn, *args): + old_path = sys.path - return results + try: + sys.path = prepended_path + old_path + return fn(*args) + finally: + sys.path = old_path def CheckChangeOnUpload(input_api, output_api): - report = [] - report.extend(_CommonChecks(input_api, output_api)) - return report + def go(): + results = [] + results.extend(_CommonChecks(input_api, output_api)) + return results + return RunWithPrependedPath(GetPathsToPrepend(input_api), go) def CheckChangeOnCommit(input_api, output_api): - report = [] - report.extend(_CommonChecks(input_api, output_api)) - return report + def go(): + results = [] + results.extend(_CommonChecks(input_api, output_api)) + return results + return RunWithPrependedPath(GetPathsToPrepend(input_api), go) diff --git a/tools/telemetry/build/update_docs.py b/tools/telemetry/build/update_docs.py index 019ad55..d5f6d0c 100644 --- a/tools/telemetry/build/update_docs.py +++ b/tools/telemetry/build/update_docs.py @@ -6,21 +6,64 @@ import optparse import os import pkgutil import pydoc +import re import sys from telemetry.core import util -def RemoveAllDocs(docs_dir): +telemetry_dir = util.GetTelemetryDir() +docs_dir = os.path.join(telemetry_dir, 'docs') + +def EnsureTelemetryIsInPath(): + if telemetry_dir not in sys.path: + sys.path.append(telemetry_dir) + +def RemoveAllDocs(): for dirname, _, filenames in os.walk(docs_dir): for filename in filenames: os.remove(os.path.join(dirname, filename)) -def WriteDocsFor(module): - pydoc.writedoc(module) +def GenerateHTMLForModule(module): + html = pydoc.html.page(pydoc.describe(module), + pydoc.html.document(module, module.__name__)) + + # pydoc writes out html with links in a variety of funky ways. We need + # to fix them up. + assert not telemetry_dir.endswith(os.sep) + links = re.findall('(<a href="(.+?)">(.+?)</a>)', html) + for link_match in links: + link, href, link_text = link_match + if not href.startswith('file:'): + continue + + new_href = href.replace('file:', '') + new_href = new_href.replace(telemetry_dir, '..') + new_href = new_href.replace(os.sep, '/') + + new_link_text = link_text.replace(telemetry_dir + os.sep, '') + + new_link = '<a href="%s">%s</a>' % (new_href, new_link_text) + html = html.replace(link, new_link) + + # pydoc writes out html with absolute path file links. This is not suitable + # for checked in documentation. So, fix up the HTML after it is generated. + #html = re.sub('href="file:%s' % telemetry_dir, 'href="..', html) + #html = re.sub(telemetry_dir + os.sep, '', html) + return html + +def WriteHTMLForModule(module): + page = GenerateHTMLForModule(module) + path = os.path.join(docs_dir, '%s.html' % module.__name__) + with open(path, 'w') as f: + sys.stderr.write('Wrote %s\n' % os.path.relpath(path)) + f.write(page) + +def GetAllModulesToDocument(module): + modules = [module] for _, modname, _ in pkgutil.walk_packages( module.__path__, module.__name__ + '.'): if modname.endswith('_unittest'): - logging.info("skipping %s due to being a unittest", modname) + logging.debug("skipping %s due to being a unittest", modname) continue module = __import__(modname, fromlist=[""]) @@ -29,7 +72,61 @@ def WriteDocsFor(module): logging.info("skipping %s due to being an orphan .pyc", module.__file__) continue - pydoc.writedoc(module) + modules.append(module) + return modules + +class AlreadyDocumentedModule(object): + def __init__(self, filename): + self.filename = filename + + @property + def name(self): + basename = os.path.basename(self.filename) + return os.path.splitext(basename)[0] + + @property + def contents(self): + with open(self.filename, 'r') as f: + return f.read() + +def GetAlreadyDocumentedModules(): + modules = [] + for dirname, _, filenames in os.walk(docs_dir): + for filename in filenames: + path = os.path.join(dirname, filename) + modules.append(AlreadyDocumentedModule(path)) + return modules + + +def IsUpdateDocsNeeded(): + EnsureTelemetryIsInPath() + import telemetry + + already_documented_modules = GetAlreadyDocumentedModules() + already_documented_modules_by_name = dict( + (module.name, module) for module in already_documented_modules) + current_modules = GetAllModulesToDocument(telemetry) + + # Quick check: if the names of modules has changed, we definitely need + # an update. + already_documented_module_names = set( + m.name for m in already_documented_modules) + + current_module_names = set([m.__name__ for m in current_modules]) + + if current_module_names != already_documented_module_names: + return True + + # Generate the new docs and compare aganist the old. If changed, then a + # an update is needed. + for current_module in current_modules: + already_documented_module = already_documented_modules_by_name[ + current_module.__name__] + current_html = GenerateHTMLForModule(current_module) + if current_html != already_documented_module.contents: + return True + + return False def Main(args): parser = optparse.OptionParser() @@ -44,21 +141,17 @@ def Main(args): else: logging.basicConfig(level=logging.WARNING) - - telemetry_dir = util.GetTelemetryDir() - docs_dir = os.path.join(telemetry_dir, 'docs') - assert os.path.isdir(docs_dir) - RemoveAllDocs(docs_dir) + RemoveAllDocs() - if telemetry_dir not in sys.path: - sys.path.append(telemetry_dir) + EnsureTelemetryIsInPath() import telemetry old_cwd = os.getcwd() try: - os.chdir(docs_dir) - WriteDocsFor(telemetry) + os.chdir(telemetry_dir) + for module in GetAllModulesToDocument(telemetry): + WriteHTMLForModule(module) finally: os.chdir(old_cwd) diff --git a/tools/telemetry/docs/telemetry.core.browser.html b/tools/telemetry/docs/telemetry.core.browser.html index 4c7f8b1..7bfb567 100644 --- a/tools/telemetry/docs/telemetry.core.browser.html +++ b/tools/telemetry/docs/telemetry.core.browser.html @@ -8,7 +8,7 @@ <td valign=bottom> <br> <font color="#ffffff" face="helvetica, arial"> <br><big><big><strong><a href="telemetry.html"><font color="#ffffff">telemetry</font></a>.<a href="telemetry.core.html"><font color="#ffffff">core</font></a>.browser</strong></big></big></font></td ><td align=right valign=bottom -><font color="#ffffff" face="helvetica, arial"><a href=".">index</a><br><a href="file:/Users/nduca/Local/chrome/src/tools/telemetry/telemetry/core/browser.py">/Users/nduca/Local/chrome/src/tools/telemetry/telemetry/core/browser.py</a></font></td></tr></table> +><font color="#ffffff" face="helvetica, arial"><a href=".">index</a><br><a href="../telemetry/core/browser.py">telemetry/core/browser.py</a></font></td></tr></table> <p><tt># Copyright (c) 2012 The Chromium Authors. All rights reserved.<br> # Use of this source code is governed by a BSD-style license that can be<br> # found in the LICENSE file.</tt></p> diff --git a/tools/telemetry/docs/telemetry.core.browser_credentials.html b/tools/telemetry/docs/telemetry.core.browser_credentials.html index dd73f11..87ca68b 100644 --- a/tools/telemetry/docs/telemetry.core.browser_credentials.html +++ b/tools/telemetry/docs/telemetry.core.browser_credentials.html @@ -8,7 +8,7 @@ <td valign=bottom> <br> <font color="#ffffff" face="helvetica, arial"> <br><big><big><strong><a href="telemetry.html"><font color="#ffffff">telemetry</font></a>.<a href="telemetry.core.html"><font color="#ffffff">core</font></a>.browser_credentials</strong></big></big></font></td ><td align=right valign=bottom -><font color="#ffffff" face="helvetica, arial"><a href=".">index</a><br><a href="file:/Users/nduca/Local/chrome/src/tools/telemetry/telemetry/core/browser_credentials.py">/Users/nduca/Local/chrome/src/tools/telemetry/telemetry/core/browser_credentials.py</a></font></td></tr></table> +><font color="#ffffff" face="helvetica, arial"><a href=".">index</a><br><a href="../telemetry/core/browser_credentials.py">telemetry/core/browser_credentials.py</a></font></td></tr></table> <p><tt># Copyright (c) 2012 The Chromium Authors. All rights reserved.<br> # Use of this source code is governed by a BSD-style license that can be<br> # found in the LICENSE file.</tt></p> diff --git a/tools/telemetry/docs/telemetry.core.browser_finder.html b/tools/telemetry/docs/telemetry.core.browser_finder.html index 5e60c35..bccf9bc 100644 --- a/tools/telemetry/docs/telemetry.core.browser_finder.html +++ b/tools/telemetry/docs/telemetry.core.browser_finder.html @@ -8,7 +8,7 @@ <td valign=bottom> <br> <font color="#ffffff" face="helvetica, arial"> <br><big><big><strong><a href="telemetry.html"><font color="#ffffff">telemetry</font></a>.<a href="telemetry.core.html"><font color="#ffffff">core</font></a>.browser_finder</strong></big></big></font></td ><td align=right valign=bottom -><font color="#ffffff" face="helvetica, arial"><a href=".">index</a><br><a href="file:/Users/nduca/Local/chrome/src/tools/telemetry/telemetry/core/browser_finder.py">/Users/nduca/Local/chrome/src/tools/telemetry/telemetry/core/browser_finder.py</a></font></td></tr></table> +><font color="#ffffff" face="helvetica, arial"><a href=".">index</a><br><a href="../telemetry/core/browser_finder.py">telemetry/core/browser_finder.py</a></font></td></tr></table> <p><tt>Finds browsers that can be controlled by telemetry.</tt></p> <p> <table width="100%" cellspacing=0 cellpadding=2 border=0 summary="section"> diff --git a/tools/telemetry/docs/telemetry.core.browser_options.html b/tools/telemetry/docs/telemetry.core.browser_options.html index 8e0d963..6644305 100644 --- a/tools/telemetry/docs/telemetry.core.browser_options.html +++ b/tools/telemetry/docs/telemetry.core.browser_options.html @@ -8,7 +8,7 @@ <td valign=bottom> <br> <font color="#ffffff" face="helvetica, arial"> <br><big><big><strong><a href="telemetry.html"><font color="#ffffff">telemetry</font></a>.<a href="telemetry.core.html"><font color="#ffffff">core</font></a>.browser_options</strong></big></big></font></td ><td align=right valign=bottom -><font color="#ffffff" face="helvetica, arial"><a href=".">index</a><br><a href="file:/Users/nduca/Local/chrome/src/tools/telemetry/telemetry/core/browser_options.py">/Users/nduca/Local/chrome/src/tools/telemetry/telemetry/core/browser_options.py</a></font></td></tr></table> +><font color="#ffffff" face="helvetica, arial"><a href=".">index</a><br><a href="../telemetry/core/browser_options.py">telemetry/core/browser_options.py</a></font></td></tr></table> <p><tt># Copyright (c) 2012 The Chromium Authors. All rights reserved.<br> # Use of this source code is governed by a BSD-style license that can be<br> # found in the LICENSE file.</tt></p> diff --git a/tools/telemetry/docs/telemetry.core.chrome.adb_commands.html b/tools/telemetry/docs/telemetry.core.chrome.adb_commands.html index 7aa7d88..8b043a9 100644 --- a/tools/telemetry/docs/telemetry.core.chrome.adb_commands.html +++ b/tools/telemetry/docs/telemetry.core.chrome.adb_commands.html @@ -8,7 +8,7 @@ <td valign=bottom> <br> <font color="#ffffff" face="helvetica, arial"> <br><big><big><strong><a href="telemetry.html"><font color="#ffffff">telemetry</font></a>.<a href="telemetry.core.html"><font color="#ffffff">core</font></a>.<a href="telemetry.core.chrome.html"><font color="#ffffff">chrome</font></a>.adb_commands</strong></big></big></font></td ><td align=right valign=bottom -><font color="#ffffff" face="helvetica, arial"><a href=".">index</a><br><a href="file:/Users/nduca/Local/chrome/src/tools/telemetry/telemetry/core/chrome/adb_commands.py">/Users/nduca/Local/chrome/src/tools/telemetry/telemetry/core/chrome/adb_commands.py</a></font></td></tr></table> +><font color="#ffffff" face="helvetica, arial"><a href=".">index</a><br><a href="../telemetry/core/chrome/adb_commands.py">telemetry/core/chrome/adb_commands.py</a></font></td></tr></table> <p><tt>Brings in Chrome Android's android_commands module, which itself is a<br> thin(ish) wrapper around adb.</tt></p> <p> diff --git a/tools/telemetry/docs/telemetry.core.chrome.android_browser_backend.html b/tools/telemetry/docs/telemetry.core.chrome.android_browser_backend.html index 61d74ef..c521930 100644 --- a/tools/telemetry/docs/telemetry.core.chrome.android_browser_backend.html +++ b/tools/telemetry/docs/telemetry.core.chrome.android_browser_backend.html @@ -8,7 +8,7 @@ <td valign=bottom> <br> <font color="#ffffff" face="helvetica, arial"> <br><big><big><strong><a href="telemetry.html"><font color="#ffffff">telemetry</font></a>.<a href="telemetry.core.html"><font color="#ffffff">core</font></a>.<a href="telemetry.core.chrome.html"><font color="#ffffff">chrome</font></a>.android_browser_backend</strong></big></big></font></td ><td align=right valign=bottom -><font color="#ffffff" face="helvetica, arial"><a href=".">index</a><br><a href="file:/Users/nduca/Local/chrome/src/tools/telemetry/telemetry/core/chrome/android_browser_backend.py">/Users/nduca/Local/chrome/src/tools/telemetry/telemetry/core/chrome/android_browser_backend.py</a></font></td></tr></table> +><font color="#ffffff" face="helvetica, arial"><a href=".">index</a><br><a href="../telemetry/core/chrome/android_browser_backend.py">telemetry/core/chrome/android_browser_backend.py</a></font></td></tr></table> <p><tt># Copyright (c) 2012 The Chromium Authors. All rights reserved.<br> # Use of this source code is governed by a BSD-style license that can be<br> # found in the LICENSE file.</tt></p> diff --git a/tools/telemetry/docs/telemetry.core.chrome.android_browser_finder.html b/tools/telemetry/docs/telemetry.core.chrome.android_browser_finder.html index d5a4b60..188c5a8 100644 --- a/tools/telemetry/docs/telemetry.core.chrome.android_browser_finder.html +++ b/tools/telemetry/docs/telemetry.core.chrome.android_browser_finder.html @@ -8,7 +8,7 @@ <td valign=bottom> <br> <font color="#ffffff" face="helvetica, arial"> <br><big><big><strong><a href="telemetry.html"><font color="#ffffff">telemetry</font></a>.<a href="telemetry.core.html"><font color="#ffffff">core</font></a>.<a href="telemetry.core.chrome.html"><font color="#ffffff">chrome</font></a>.android_browser_finder</strong></big></big></font></td ><td align=right valign=bottom -><font color="#ffffff" face="helvetica, arial"><a href=".">index</a><br><a href="file:/Users/nduca/Local/chrome/src/tools/telemetry/telemetry/core/chrome/android_browser_finder.py">/Users/nduca/Local/chrome/src/tools/telemetry/telemetry/core/chrome/android_browser_finder.py</a></font></td></tr></table> +><font color="#ffffff" face="helvetica, arial"><a href=".">index</a><br><a href="../telemetry/core/chrome/android_browser_finder.py">telemetry/core/chrome/android_browser_finder.py</a></font></td></tr></table> <p><tt>Finds android browsers that can be controlled by telemetry.</tt></p> <p> <table width="100%" cellspacing=0 cellpadding=2 border=0 summary="section"> diff --git a/tools/telemetry/docs/telemetry.core.chrome.browser_backend.html b/tools/telemetry/docs/telemetry.core.chrome.browser_backend.html index 2259eff..8c39337 100644 --- a/tools/telemetry/docs/telemetry.core.chrome.browser_backend.html +++ b/tools/telemetry/docs/telemetry.core.chrome.browser_backend.html @@ -8,7 +8,7 @@ <td valign=bottom> <br> <font color="#ffffff" face="helvetica, arial"> <br><big><big><strong><a href="telemetry.html"><font color="#ffffff">telemetry</font></a>.<a href="telemetry.core.html"><font color="#ffffff">core</font></a>.<a href="telemetry.core.chrome.html"><font color="#ffffff">chrome</font></a>.browser_backend</strong></big></big></font></td ><td align=right valign=bottom -><font color="#ffffff" face="helvetica, arial"><a href=".">index</a><br><a href="file:/Users/nduca/Local/chrome/src/tools/telemetry/telemetry/core/chrome/browser_backend.py">/Users/nduca/Local/chrome/src/tools/telemetry/telemetry/core/chrome/browser_backend.py</a></font></td></tr></table> +><font color="#ffffff" face="helvetica, arial"><a href=".">index</a><br><a href="../telemetry/core/chrome/browser_backend.py">telemetry/core/chrome/browser_backend.py</a></font></td></tr></table> <p><tt># Copyright (c) 2012 The Chromium Authors. All rights reserved.<br> # Use of this source code is governed by a BSD-style license that can be<br> # found in the LICENSE file.</tt></p> diff --git a/tools/telemetry/docs/telemetry.core.chrome.cros_browser_backend.html b/tools/telemetry/docs/telemetry.core.chrome.cros_browser_backend.html index 0e1a682..f8ede9d 100644 --- a/tools/telemetry/docs/telemetry.core.chrome.cros_browser_backend.html +++ b/tools/telemetry/docs/telemetry.core.chrome.cros_browser_backend.html @@ -8,7 +8,7 @@ <td valign=bottom> <br> <font color="#ffffff" face="helvetica, arial"> <br><big><big><strong><a href="telemetry.html"><font color="#ffffff">telemetry</font></a>.<a href="telemetry.core.html"><font color="#ffffff">core</font></a>.<a href="telemetry.core.chrome.html"><font color="#ffffff">chrome</font></a>.cros_browser_backend</strong></big></big></font></td ><td align=right valign=bottom -><font color="#ffffff" face="helvetica, arial"><a href=".">index</a><br><a href="file:/Users/nduca/Local/chrome/src/tools/telemetry/telemetry/core/chrome/cros_browser_backend.py">/Users/nduca/Local/chrome/src/tools/telemetry/telemetry/core/chrome/cros_browser_backend.py</a></font></td></tr></table> +><font color="#ffffff" face="helvetica, arial"><a href=".">index</a><br><a href="../telemetry/core/chrome/cros_browser_backend.py">telemetry/core/chrome/cros_browser_backend.py</a></font></td></tr></table> <p><tt># Copyright (c) 2012 The Chromium Authors. All rights reserved.<br> # Use of this source code is governed by a BSD-style license that can be<br> # found in the LICENSE file.</tt></p> diff --git a/tools/telemetry/docs/telemetry.core.chrome.cros_browser_finder.html b/tools/telemetry/docs/telemetry.core.chrome.cros_browser_finder.html index 6d75c26..bfe4478 100644 --- a/tools/telemetry/docs/telemetry.core.chrome.cros_browser_finder.html +++ b/tools/telemetry/docs/telemetry.core.chrome.cros_browser_finder.html @@ -8,7 +8,7 @@ <td valign=bottom> <br> <font color="#ffffff" face="helvetica, arial"> <br><big><big><strong><a href="telemetry.html"><font color="#ffffff">telemetry</font></a>.<a href="telemetry.core.html"><font color="#ffffff">core</font></a>.<a href="telemetry.core.chrome.html"><font color="#ffffff">chrome</font></a>.cros_browser_finder</strong></big></big></font></td ><td align=right valign=bottom -><font color="#ffffff" face="helvetica, arial"><a href=".">index</a><br><a href="file:/Users/nduca/Local/chrome/src/tools/telemetry/telemetry/core/chrome/cros_browser_finder.py">/Users/nduca/Local/chrome/src/tools/telemetry/telemetry/core/chrome/cros_browser_finder.py</a></font></td></tr></table> +><font color="#ffffff" face="helvetica, arial"><a href=".">index</a><br><a href="../telemetry/core/chrome/cros_browser_finder.py">telemetry/core/chrome/cros_browser_finder.py</a></font></td></tr></table> <p><tt>Finds CrOS browsers that can be controlled by telemetry.</tt></p> <p> <table width="100%" cellspacing=0 cellpadding=2 border=0 summary="section"> diff --git a/tools/telemetry/docs/telemetry.core.chrome.cros_interface.html b/tools/telemetry/docs/telemetry.core.chrome.cros_interface.html index e82de40..00657e3 100644 --- a/tools/telemetry/docs/telemetry.core.chrome.cros_interface.html +++ b/tools/telemetry/docs/telemetry.core.chrome.cros_interface.html @@ -8,7 +8,7 @@ <td valign=bottom> <br> <font color="#ffffff" face="helvetica, arial"> <br><big><big><strong><a href="telemetry.html"><font color="#ffffff">telemetry</font></a>.<a href="telemetry.core.html"><font color="#ffffff">core</font></a>.<a href="telemetry.core.chrome.html"><font color="#ffffff">chrome</font></a>.cros_interface</strong></big></big></font></td ><td align=right valign=bottom -><font color="#ffffff" face="helvetica, arial"><a href=".">index</a><br><a href="file:/Users/nduca/Local/chrome/src/tools/telemetry/telemetry/core/chrome/cros_interface.py">/Users/nduca/Local/chrome/src/tools/telemetry/telemetry/core/chrome/cros_interface.py</a></font></td></tr></table> +><font color="#ffffff" face="helvetica, arial"><a href=".">index</a><br><a href="../telemetry/core/chrome/cros_interface.py">telemetry/core/chrome/cros_interface.py</a></font></td></tr></table> <p><tt>A wrapper around ssh for common operations on a CrOS-based device</tt></p> <p> <table width="100%" cellspacing=0 cellpadding=2 border=0 summary="section"> diff --git a/tools/telemetry/docs/telemetry.core.chrome.cros_util.html b/tools/telemetry/docs/telemetry.core.chrome.cros_util.html index e7994cc..e58a97c 100644 --- a/tools/telemetry/docs/telemetry.core.chrome.cros_util.html +++ b/tools/telemetry/docs/telemetry.core.chrome.cros_util.html @@ -8,7 +8,7 @@ <td valign=bottom> <br> <font color="#ffffff" face="helvetica, arial"> <br><big><big><strong><a href="telemetry.html"><font color="#ffffff">telemetry</font></a>.<a href="telemetry.core.html"><font color="#ffffff">core</font></a>.<a href="telemetry.core.chrome.html"><font color="#ffffff">chrome</font></a>.cros_util</strong></big></big></font></td ><td align=right valign=bottom -><font color="#ffffff" face="helvetica, arial"><a href=".">index</a><br><a href="file:/Users/nduca/Local/chrome/src/tools/telemetry/telemetry/core/chrome/cros_util.py">/Users/nduca/Local/chrome/src/tools/telemetry/telemetry/core/chrome/cros_util.py</a></font></td></tr></table> +><font color="#ffffff" face="helvetica, arial"><a href=".">index</a><br><a href="../telemetry/core/chrome/cros_util.py">telemetry/core/chrome/cros_util.py</a></font></td></tr></table> <p><tt># Copyright (c) 2013 The Chromium Authors. All rights reserved.<br> # Use of this source code is governed by a BSD-style license that can be<br> # found in the LICENSE file.</tt></p> diff --git a/tools/telemetry/docs/telemetry.core.chrome.crx_id.html b/tools/telemetry/docs/telemetry.core.chrome.crx_id.html index cf6c52a..f32c030 100644 --- a/tools/telemetry/docs/telemetry.core.chrome.crx_id.html +++ b/tools/telemetry/docs/telemetry.core.chrome.crx_id.html @@ -8,7 +8,7 @@ <td valign=bottom> <br> <font color="#ffffff" face="helvetica, arial"> <br><big><big><strong><a href="telemetry.html"><font color="#ffffff">telemetry</font></a>.<a href="telemetry.core.html"><font color="#ffffff">core</font></a>.<a href="telemetry.core.chrome.html"><font color="#ffffff">chrome</font></a>.crx_id</strong></big></big></font></td ><td align=right valign=bottom -><font color="#ffffff" face="helvetica, arial"><a href=".">index</a><br><a href="file:/Users/nduca/Local/chrome/src/tools/telemetry/telemetry/core/chrome/crx_id.py">/Users/nduca/Local/chrome/src/tools/telemetry/telemetry/core/chrome/crx_id.py</a></font></td></tr></table> +><font color="#ffffff" face="helvetica, arial"><a href=".">index</a><br><a href="../telemetry/core/chrome/crx_id.py">telemetry/core/chrome/crx_id.py</a></font></td></tr></table> <p><tt># Copyright (c) 2012 The Chromium Authors. All rights reserved.<br> # Use of this source code is governed by a BSD-style license that can be<br> # found in the LICENSE file.</tt></p> diff --git a/tools/telemetry/docs/telemetry.core.chrome.desktop_browser_backend.html b/tools/telemetry/docs/telemetry.core.chrome.desktop_browser_backend.html index 040b317..812b1018 100644 --- a/tools/telemetry/docs/telemetry.core.chrome.desktop_browser_backend.html +++ b/tools/telemetry/docs/telemetry.core.chrome.desktop_browser_backend.html @@ -8,7 +8,7 @@ <td valign=bottom> <br> <font color="#ffffff" face="helvetica, arial"> <br><big><big><strong><a href="telemetry.html"><font color="#ffffff">telemetry</font></a>.<a href="telemetry.core.html"><font color="#ffffff">core</font></a>.<a href="telemetry.core.chrome.html"><font color="#ffffff">chrome</font></a>.desktop_browser_backend</strong></big></big></font></td ><td align=right valign=bottom -><font color="#ffffff" face="helvetica, arial"><a href=".">index</a><br><a href="file:/Users/nduca/Local/chrome/src/tools/telemetry/telemetry/core/chrome/desktop_browser_backend.py">/Users/nduca/Local/chrome/src/tools/telemetry/telemetry/core/chrome/desktop_browser_backend.py</a></font></td></tr></table> +><font color="#ffffff" face="helvetica, arial"><a href=".">index</a><br><a href="../telemetry/core/chrome/desktop_browser_backend.py">telemetry/core/chrome/desktop_browser_backend.py</a></font></td></tr></table> <p><tt># Copyright (c) 2012 The Chromium Authors. All rights reserved.<br> # Use of this source code is governed by a BSD-style license that can be<br> # found in the LICENSE file.</tt></p> diff --git a/tools/telemetry/docs/telemetry.core.chrome.desktop_browser_finder.html b/tools/telemetry/docs/telemetry.core.chrome.desktop_browser_finder.html index 687b078..e009fba 100644 --- a/tools/telemetry/docs/telemetry.core.chrome.desktop_browser_finder.html +++ b/tools/telemetry/docs/telemetry.core.chrome.desktop_browser_finder.html @@ -8,7 +8,7 @@ <td valign=bottom> <br> <font color="#ffffff" face="helvetica, arial"> <br><big><big><strong><a href="telemetry.html"><font color="#ffffff">telemetry</font></a>.<a href="telemetry.core.html"><font color="#ffffff">core</font></a>.<a href="telemetry.core.chrome.html"><font color="#ffffff">chrome</font></a>.desktop_browser_finder</strong></big></big></font></td ><td align=right valign=bottom -><font color="#ffffff" face="helvetica, arial"><a href=".">index</a><br><a href="file:/Users/nduca/Local/chrome/src/tools/telemetry/telemetry/core/chrome/desktop_browser_finder.py">/Users/nduca/Local/chrome/src/tools/telemetry/telemetry/core/chrome/desktop_browser_finder.py</a></font></td></tr></table> +><font color="#ffffff" face="helvetica, arial"><a href=".">index</a><br><a href="../telemetry/core/chrome/desktop_browser_finder.py">telemetry/core/chrome/desktop_browser_finder.py</a></font></td></tr></table> <p><tt>Finds desktop browsers that can be controlled by telemetry.</tt></p> <p> <table width="100%" cellspacing=0 cellpadding=2 border=0 summary="section"> diff --git a/tools/telemetry/docs/telemetry.core.chrome.extension_dict_backend.html b/tools/telemetry/docs/telemetry.core.chrome.extension_dict_backend.html index 53aac52..9dfe2f2 100644 --- a/tools/telemetry/docs/telemetry.core.chrome.extension_dict_backend.html +++ b/tools/telemetry/docs/telemetry.core.chrome.extension_dict_backend.html @@ -8,7 +8,7 @@ <td valign=bottom> <br> <font color="#ffffff" face="helvetica, arial"> <br><big><big><strong><a href="telemetry.html"><font color="#ffffff">telemetry</font></a>.<a href="telemetry.core.html"><font color="#ffffff">core</font></a>.<a href="telemetry.core.chrome.html"><font color="#ffffff">chrome</font></a>.extension_dict_backend</strong></big></big></font></td ><td align=right valign=bottom -><font color="#ffffff" face="helvetica, arial"><a href=".">index</a><br><a href="file:/Users/nduca/Local/chrome/src/tools/telemetry/telemetry/core/chrome/extension_dict_backend.py">/Users/nduca/Local/chrome/src/tools/telemetry/telemetry/core/chrome/extension_dict_backend.py</a></font></td></tr></table> +><font color="#ffffff" face="helvetica, arial"><a href=".">index</a><br><a href="../telemetry/core/chrome/extension_dict_backend.py">telemetry/core/chrome/extension_dict_backend.py</a></font></td></tr></table> <p><tt># Copyright (c) 2012 The Chromium Authors. All rights reserved.<br> # Use of this source code is governed by a BSD-style license that can be<br> # found in the LICENSE file.</tt></p> diff --git a/tools/telemetry/docs/telemetry.core.chrome.facebook_credentials_backend.html b/tools/telemetry/docs/telemetry.core.chrome.facebook_credentials_backend.html index 82100dc..19b0d29 100644 --- a/tools/telemetry/docs/telemetry.core.chrome.facebook_credentials_backend.html +++ b/tools/telemetry/docs/telemetry.core.chrome.facebook_credentials_backend.html @@ -8,7 +8,7 @@ <td valign=bottom> <br> <font color="#ffffff" face="helvetica, arial"> <br><big><big><strong><a href="telemetry.html"><font color="#ffffff">telemetry</font></a>.<a href="telemetry.core.html"><font color="#ffffff">core</font></a>.<a href="telemetry.core.chrome.html"><font color="#ffffff">chrome</font></a>.facebook_credentials_backend</strong></big></big></font></td ><td align=right valign=bottom -><font color="#ffffff" face="helvetica, arial"><a href=".">index</a><br><a href="file:/Users/nduca/Local/chrome/src/tools/telemetry/telemetry/core/chrome/facebook_credentials_backend.py">/Users/nduca/Local/chrome/src/tools/telemetry/telemetry/core/chrome/facebook_credentials_backend.py</a></font></td></tr></table> +><font color="#ffffff" face="helvetica, arial"><a href=".">index</a><br><a href="../telemetry/core/chrome/facebook_credentials_backend.py">telemetry/core/chrome/facebook_credentials_backend.py</a></font></td></tr></table> <p><tt># Copyright (c) 2012 The Chromium Authors. All rights reserved.<br> # Use of this source code is governed by a BSD-style license that can be<br> # found in the LICENSE file.</tt></p> diff --git a/tools/telemetry/docs/telemetry.core.chrome.form_based_credentials_backend.html b/tools/telemetry/docs/telemetry.core.chrome.form_based_credentials_backend.html index c473d59..3a9298a 100644 --- a/tools/telemetry/docs/telemetry.core.chrome.form_based_credentials_backend.html +++ b/tools/telemetry/docs/telemetry.core.chrome.form_based_credentials_backend.html @@ -8,7 +8,7 @@ <td valign=bottom> <br> <font color="#ffffff" face="helvetica, arial"> <br><big><big><strong><a href="telemetry.html"><font color="#ffffff">telemetry</font></a>.<a href="telemetry.core.html"><font color="#ffffff">core</font></a>.<a href="telemetry.core.chrome.html"><font color="#ffffff">chrome</font></a>.form_based_credentials_backend</strong></big></big></font></td ><td align=right valign=bottom -><font color="#ffffff" face="helvetica, arial"><a href=".">index</a><br><a href="file:/Users/nduca/Local/chrome/src/tools/telemetry/telemetry/core/chrome/form_based_credentials_backend.py">/Users/nduca/Local/chrome/src/tools/telemetry/telemetry/core/chrome/form_based_credentials_backend.py</a></font></td></tr></table> +><font color="#ffffff" face="helvetica, arial"><a href=".">index</a><br><a href="../telemetry/core/chrome/form_based_credentials_backend.py">telemetry/core/chrome/form_based_credentials_backend.py</a></font></td></tr></table> <p><tt># Copyright (c) 2012 The Chromium Authors. All rights reserved.<br> # Use of this source code is governed by a BSD-style license that can be<br> # found in the LICENSE file.</tt></p> diff --git a/tools/telemetry/docs/telemetry.core.chrome.form_based_credentials_backend_unittest_base.html b/tools/telemetry/docs/telemetry.core.chrome.form_based_credentials_backend_unittest_base.html index 514dc6c..6c98345 100644 --- a/tools/telemetry/docs/telemetry.core.chrome.form_based_credentials_backend_unittest_base.html +++ b/tools/telemetry/docs/telemetry.core.chrome.form_based_credentials_backend_unittest_base.html @@ -8,7 +8,7 @@ <td valign=bottom> <br> <font color="#ffffff" face="helvetica, arial"> <br><big><big><strong><a href="telemetry.html"><font color="#ffffff">telemetry</font></a>.<a href="telemetry.core.html"><font color="#ffffff">core</font></a>.<a href="telemetry.core.chrome.html"><font color="#ffffff">chrome</font></a>.form_based_credentials_backend_unittest_base</strong></big></big></font></td ><td align=right valign=bottom -><font color="#ffffff" face="helvetica, arial"><a href=".">index</a><br><a href="file:/Users/nduca/Local/chrome/src/tools/telemetry/telemetry/core/chrome/form_based_credentials_backend_unittest_base.py">/Users/nduca/Local/chrome/src/tools/telemetry/telemetry/core/chrome/form_based_credentials_backend_unittest_base.py</a></font></td></tr></table> +><font color="#ffffff" face="helvetica, arial"><a href=".">index</a><br><a href="../telemetry/core/chrome/form_based_credentials_backend_unittest_base.py">telemetry/core/chrome/form_based_credentials_backend_unittest_base.py</a></font></td></tr></table> <p><tt># Copyright (c) 2013 The Chromium Authors. All rights reserved.<br> # Use of this source code is governed by a BSD-style license that can be<br> # found in the LICENSE file.</tt></p> diff --git a/tools/telemetry/docs/telemetry.core.chrome.google_credentials_backend.html b/tools/telemetry/docs/telemetry.core.chrome.google_credentials_backend.html index 7745b4f..57a53d1 100644 --- a/tools/telemetry/docs/telemetry.core.chrome.google_credentials_backend.html +++ b/tools/telemetry/docs/telemetry.core.chrome.google_credentials_backend.html @@ -8,7 +8,7 @@ <td valign=bottom> <br> <font color="#ffffff" face="helvetica, arial"> <br><big><big><strong><a href="telemetry.html"><font color="#ffffff">telemetry</font></a>.<a href="telemetry.core.html"><font color="#ffffff">core</font></a>.<a href="telemetry.core.chrome.html"><font color="#ffffff">chrome</font></a>.google_credentials_backend</strong></big></big></font></td ><td align=right valign=bottom -><font color="#ffffff" face="helvetica, arial"><a href=".">index</a><br><a href="file:/Users/nduca/Local/chrome/src/tools/telemetry/telemetry/core/chrome/google_credentials_backend.py">/Users/nduca/Local/chrome/src/tools/telemetry/telemetry/core/chrome/google_credentials_backend.py</a></font></td></tr></table> +><font color="#ffffff" face="helvetica, arial"><a href=".">index</a><br><a href="../telemetry/core/chrome/google_credentials_backend.py">telemetry/core/chrome/google_credentials_backend.py</a></font></td></tr></table> <p><tt># Copyright (c) 2012 The Chromium Authors. All rights reserved.<br> # Use of this source code is governed by a BSD-style license that can be<br> # found in the LICENSE file.</tt></p> diff --git a/tools/telemetry/docs/telemetry.core.chrome.html b/tools/telemetry/docs/telemetry.core.chrome.html index 6110b0b..93b73df 100644 --- a/tools/telemetry/docs/telemetry.core.chrome.html +++ b/tools/telemetry/docs/telemetry.core.chrome.html @@ -8,7 +8,7 @@ <td valign=bottom> <br> <font color="#ffffff" face="helvetica, arial"> <br><big><big><strong><a href="telemetry.html"><font color="#ffffff">telemetry</font></a>.<a href="telemetry.core.html"><font color="#ffffff">core</font></a>.chrome</strong></big></big></font></td ><td align=right valign=bottom -><font color="#ffffff" face="helvetica, arial"><a href=".">index</a><br><a href="file:/Users/nduca/Local/chrome/src/tools/telemetry/telemetry/core/chrome/__init__.py">/Users/nduca/Local/chrome/src/tools/telemetry/telemetry/core/chrome/__init__.py</a></font></td></tr></table> +><font color="#ffffff" face="helvetica, arial"><a href=".">index</a><br><a href="../telemetry/core/chrome/__init__.py">telemetry/core/chrome/__init__.py</a></font></td></tr></table> <p><tt># Copyright (c) 2012 The Chromium Authors. All rights reserved.<br> # Use of this source code is governed by a BSD-style license that can be<br> # found in the LICENSE file.</tt></p> diff --git a/tools/telemetry/docs/telemetry.core.chrome.inspector_backend.html b/tools/telemetry/docs/telemetry.core.chrome.inspector_backend.html index 5c565fb..35101a0 100644 --- a/tools/telemetry/docs/telemetry.core.chrome.inspector_backend.html +++ b/tools/telemetry/docs/telemetry.core.chrome.inspector_backend.html @@ -8,7 +8,7 @@ <td valign=bottom> <br> <font color="#ffffff" face="helvetica, arial"> <br><big><big><strong><a href="telemetry.html"><font color="#ffffff">telemetry</font></a>.<a href="telemetry.core.html"><font color="#ffffff">core</font></a>.<a href="telemetry.core.chrome.html"><font color="#ffffff">chrome</font></a>.inspector_backend</strong></big></big></font></td ><td align=right valign=bottom -><font color="#ffffff" face="helvetica, arial"><a href=".">index</a><br><a href="file:/Users/nduca/Local/chrome/src/tools/telemetry/telemetry/core/chrome/inspector_backend.py">/Users/nduca/Local/chrome/src/tools/telemetry/telemetry/core/chrome/inspector_backend.py</a></font></td></tr></table> +><font color="#ffffff" face="helvetica, arial"><a href=".">index</a><br><a href="../telemetry/core/chrome/inspector_backend.py">telemetry/core/chrome/inspector_backend.py</a></font></td></tr></table> <p><tt># Copyright (c) 2012 The Chromium Authors. All rights reserved.<br> # Use of this source code is governed by a BSD-style license that can be<br> # found in the LICENSE file.</tt></p> diff --git a/tools/telemetry/docs/telemetry.core.chrome.inspector_console.html b/tools/telemetry/docs/telemetry.core.chrome.inspector_console.html index 39ea04c..35586f7 100644 --- a/tools/telemetry/docs/telemetry.core.chrome.inspector_console.html +++ b/tools/telemetry/docs/telemetry.core.chrome.inspector_console.html @@ -8,7 +8,7 @@ <td valign=bottom> <br> <font color="#ffffff" face="helvetica, arial"> <br><big><big><strong><a href="telemetry.html"><font color="#ffffff">telemetry</font></a>.<a href="telemetry.core.html"><font color="#ffffff">core</font></a>.<a href="telemetry.core.chrome.html"><font color="#ffffff">chrome</font></a>.inspector_console</strong></big></big></font></td ><td align=right valign=bottom -><font color="#ffffff" face="helvetica, arial"><a href=".">index</a><br><a href="file:/Users/nduca/Local/chrome/src/tools/telemetry/telemetry/core/chrome/inspector_console.py">/Users/nduca/Local/chrome/src/tools/telemetry/telemetry/core/chrome/inspector_console.py</a></font></td></tr></table> +><font color="#ffffff" face="helvetica, arial"><a href=".">index</a><br><a href="../telemetry/core/chrome/inspector_console.py">telemetry/core/chrome/inspector_console.py</a></font></td></tr></table> <p><tt># Copyright (c) 2012 The Chromium Authors. All rights reserved.<br> # Use of this source code is governed by a BSD-style license that can be<br> # found in the LICENSE file.</tt></p> diff --git a/tools/telemetry/docs/telemetry.core.chrome.inspector_memory.html b/tools/telemetry/docs/telemetry.core.chrome.inspector_memory.html index 076975f..762f799 100644 --- a/tools/telemetry/docs/telemetry.core.chrome.inspector_memory.html +++ b/tools/telemetry/docs/telemetry.core.chrome.inspector_memory.html @@ -8,7 +8,7 @@ <td valign=bottom> <br> <font color="#ffffff" face="helvetica, arial"> <br><big><big><strong><a href="telemetry.html"><font color="#ffffff">telemetry</font></a>.<a href="telemetry.core.html"><font color="#ffffff">core</font></a>.<a href="telemetry.core.chrome.html"><font color="#ffffff">chrome</font></a>.inspector_memory</strong></big></big></font></td ><td align=right valign=bottom -><font color="#ffffff" face="helvetica, arial"><a href=".">index</a><br><a href="file:/Users/nduca/Local/chrome/src/tools/telemetry/telemetry/core/chrome/inspector_memory.py">/Users/nduca/Local/chrome/src/tools/telemetry/telemetry/core/chrome/inspector_memory.py</a></font></td></tr></table> +><font color="#ffffff" face="helvetica, arial"><a href=".">index</a><br><a href="../telemetry/core/chrome/inspector_memory.py">telemetry/core/chrome/inspector_memory.py</a></font></td></tr></table> <p><tt># Copyright (c) 2013 The Chromium Authors. All rights reserved.<br> # Use of this source code is governed by a BSD-style license that can be<br> # found in the LICENSE file.</tt></p> diff --git a/tools/telemetry/docs/telemetry.core.chrome.inspector_page.html b/tools/telemetry/docs/telemetry.core.chrome.inspector_page.html index d7693f2..cbc2983 100644 --- a/tools/telemetry/docs/telemetry.core.chrome.inspector_page.html +++ b/tools/telemetry/docs/telemetry.core.chrome.inspector_page.html @@ -8,7 +8,7 @@ <td valign=bottom> <br> <font color="#ffffff" face="helvetica, arial"> <br><big><big><strong><a href="telemetry.html"><font color="#ffffff">telemetry</font></a>.<a href="telemetry.core.html"><font color="#ffffff">core</font></a>.<a href="telemetry.core.chrome.html"><font color="#ffffff">chrome</font></a>.inspector_page</strong></big></big></font></td ><td align=right valign=bottom -><font color="#ffffff" face="helvetica, arial"><a href=".">index</a><br><a href="file:/Users/nduca/Local/chrome/src/tools/telemetry/telemetry/core/chrome/inspector_page.py">/Users/nduca/Local/chrome/src/tools/telemetry/telemetry/core/chrome/inspector_page.py</a></font></td></tr></table> +><font color="#ffffff" face="helvetica, arial"><a href=".">index</a><br><a href="../telemetry/core/chrome/inspector_page.py">telemetry/core/chrome/inspector_page.py</a></font></td></tr></table> <p><tt># Copyright (c) 2012 The Chromium Authors. All rights reserved.<br> # Use of this source code is governed by a BSD-style license that can be<br> # found in the LICENSE file.</tt></p> diff --git a/tools/telemetry/docs/telemetry.core.chrome.inspector_runtime.html b/tools/telemetry/docs/telemetry.core.chrome.inspector_runtime.html index 90aca69..be70c91 100644 --- a/tools/telemetry/docs/telemetry.core.chrome.inspector_runtime.html +++ b/tools/telemetry/docs/telemetry.core.chrome.inspector_runtime.html @@ -8,7 +8,7 @@ <td valign=bottom> <br> <font color="#ffffff" face="helvetica, arial"> <br><big><big><strong><a href="telemetry.html"><font color="#ffffff">telemetry</font></a>.<a href="telemetry.core.html"><font color="#ffffff">core</font></a>.<a href="telemetry.core.chrome.html"><font color="#ffffff">chrome</font></a>.inspector_runtime</strong></big></big></font></td ><td align=right valign=bottom -><font color="#ffffff" face="helvetica, arial"><a href=".">index</a><br><a href="file:/Users/nduca/Local/chrome/src/tools/telemetry/telemetry/core/chrome/inspector_runtime.py">/Users/nduca/Local/chrome/src/tools/telemetry/telemetry/core/chrome/inspector_runtime.py</a></font></td></tr></table> +><font color="#ffffff" face="helvetica, arial"><a href=".">index</a><br><a href="../telemetry/core/chrome/inspector_runtime.py">telemetry/core/chrome/inspector_runtime.py</a></font></td></tr></table> <p><tt># Copyright (c) 2012 The Chromium Authors. All rights reserved.<br> # Use of this source code is governed by a BSD-style license that can be<br> # found in the LICENSE file.</tt></p> diff --git a/tools/telemetry/docs/telemetry.core.chrome.inspector_timeline.html b/tools/telemetry/docs/telemetry.core.chrome.inspector_timeline.html index cdcfb73..6328ad9 100644 --- a/tools/telemetry/docs/telemetry.core.chrome.inspector_timeline.html +++ b/tools/telemetry/docs/telemetry.core.chrome.inspector_timeline.html @@ -8,7 +8,7 @@ <td valign=bottom> <br> <font color="#ffffff" face="helvetica, arial"> <br><big><big><strong><a href="telemetry.html"><font color="#ffffff">telemetry</font></a>.<a href="telemetry.core.html"><font color="#ffffff">core</font></a>.<a href="telemetry.core.chrome.html"><font color="#ffffff">chrome</font></a>.inspector_timeline</strong></big></big></font></td ><td align=right valign=bottom -><font color="#ffffff" face="helvetica, arial"><a href=".">index</a><br><a href="file:/Users/nduca/Local/chrome/src/tools/telemetry/telemetry/core/chrome/inspector_timeline.py">/Users/nduca/Local/chrome/src/tools/telemetry/telemetry/core/chrome/inspector_timeline.py</a></font></td></tr></table> +><font color="#ffffff" face="helvetica, arial"><a href=".">index</a><br><a href="../telemetry/core/chrome/inspector_timeline.py">telemetry/core/chrome/inspector_timeline.py</a></font></td></tr></table> <p><tt># Copyright (c) 2012 The Chromium Authors. All rights reserved.<br> # Use of this source code is governed by a BSD-style license that can be<br> # found in the LICENSE file.</tt></p> diff --git a/tools/telemetry/docs/telemetry.core.chrome.misc_web_contents_backend.html b/tools/telemetry/docs/telemetry.core.chrome.misc_web_contents_backend.html index 8b89a5e..d733762 100644 --- a/tools/telemetry/docs/telemetry.core.chrome.misc_web_contents_backend.html +++ b/tools/telemetry/docs/telemetry.core.chrome.misc_web_contents_backend.html @@ -8,7 +8,7 @@ <td valign=bottom> <br> <font color="#ffffff" face="helvetica, arial"> <br><big><big><strong><a href="telemetry.html"><font color="#ffffff">telemetry</font></a>.<a href="telemetry.core.html"><font color="#ffffff">core</font></a>.<a href="telemetry.core.chrome.html"><font color="#ffffff">chrome</font></a>.misc_web_contents_backend</strong></big></big></font></td ><td align=right valign=bottom -><font color="#ffffff" face="helvetica, arial"><a href=".">index</a><br><a href="file:/Users/nduca/Local/chrome/src/tools/telemetry/telemetry/core/chrome/misc_web_contents_backend.py">/Users/nduca/Local/chrome/src/tools/telemetry/telemetry/core/chrome/misc_web_contents_backend.py</a></font></td></tr></table> +><font color="#ffffff" face="helvetica, arial"><a href=".">index</a><br><a href="../telemetry/core/chrome/misc_web_contents_backend.py">telemetry/core/chrome/misc_web_contents_backend.py</a></font></td></tr></table> <p><tt># Copyright (c) 2012 The Chromium Authors. All rights reserved.<br> # Use of this source code is governed by a BSD-style license that can be<br> # found in the LICENSE file.</tt></p> diff --git a/tools/telemetry/docs/telemetry.core.chrome.png_bitmap.html b/tools/telemetry/docs/telemetry.core.chrome.png_bitmap.html index d311c93..a51eb7e 100644 --- a/tools/telemetry/docs/telemetry.core.chrome.png_bitmap.html +++ b/tools/telemetry/docs/telemetry.core.chrome.png_bitmap.html @@ -8,7 +8,7 @@ <td valign=bottom> <br> <font color="#ffffff" face="helvetica, arial"> <br><big><big><strong><a href="telemetry.html"><font color="#ffffff">telemetry</font></a>.<a href="telemetry.core.html"><font color="#ffffff">core</font></a>.<a href="telemetry.core.chrome.html"><font color="#ffffff">chrome</font></a>.png_bitmap</strong></big></big></font></td ><td align=right valign=bottom -><font color="#ffffff" face="helvetica, arial"><a href=".">index</a><br><a href="file:/Users/nduca/Local/chrome/src/tools/telemetry/telemetry/core/chrome/png_bitmap.py">/Users/nduca/Local/chrome/src/tools/telemetry/telemetry/core/chrome/png_bitmap.py</a></font></td></tr></table> +><font color="#ffffff" face="helvetica, arial"><a href=".">index</a><br><a href="../telemetry/core/chrome/png_bitmap.py">telemetry/core/chrome/png_bitmap.py</a></font></td></tr></table> <p><tt># Copyright (c) 2012 The Chromium Authors. All rights reserved.<br> # Use of this source code is governed by a BSD-style license that can be<br> # found in the LICENSE file.</tt></p> @@ -96,12 +96,5 @@ Data descriptors defined here:<br> <dl><dt><strong>__weakref__</strong></dt> <dd><tt>list of weak references to the object (if defined)</tt></dd> </dl> -</td></tr></table></td></tr></table><p> -<table width="100%" cellspacing=0 cellpadding=2 border=0 summary="section"> -<tr bgcolor="#55aa55"> -<td colspan=3 valign=bottom> <br> -<font color="#ffffff" face="helvetica, arial"><big><strong>Data</strong></big></font></td></tr> - -<tr><td bgcolor="#55aa55"><tt> </tt></td><td> </td> -<td width="100%"><strong>PNG_PATH</strong> = '/Users/nduca/Local/chrome/src/tools/telemetry/telemetry/core/chrome/../../../third_party/png'</td></tr></table> +</td></tr></table></td></tr></table> </body></html>
\ No newline at end of file diff --git a/tools/telemetry/docs/telemetry.core.chrome.tab_list_backend.html b/tools/telemetry/docs/telemetry.core.chrome.tab_list_backend.html index 5a7ca5c..6e1ebcb 100644 --- a/tools/telemetry/docs/telemetry.core.chrome.tab_list_backend.html +++ b/tools/telemetry/docs/telemetry.core.chrome.tab_list_backend.html @@ -8,7 +8,7 @@ <td valign=bottom> <br> <font color="#ffffff" face="helvetica, arial"> <br><big><big><strong><a href="telemetry.html"><font color="#ffffff">telemetry</font></a>.<a href="telemetry.core.html"><font color="#ffffff">core</font></a>.<a href="telemetry.core.chrome.html"><font color="#ffffff">chrome</font></a>.tab_list_backend</strong></big></big></font></td ><td align=right valign=bottom -><font color="#ffffff" face="helvetica, arial"><a href=".">index</a><br><a href="file:/Users/nduca/Local/chrome/src/tools/telemetry/telemetry/core/chrome/tab_list_backend.py">/Users/nduca/Local/chrome/src/tools/telemetry/telemetry/core/chrome/tab_list_backend.py</a></font></td></tr></table> +><font color="#ffffff" face="helvetica, arial"><a href=".">index</a><br><a href="../telemetry/core/chrome/tab_list_backend.py">telemetry/core/chrome/tab_list_backend.py</a></font></td></tr></table> <p><tt># Copyright (c) 2012 The Chromium Authors. All rights reserved.<br> # Use of this source code is governed by a BSD-style license that can be<br> # found in the LICENSE file.</tt></p> diff --git a/tools/telemetry/docs/telemetry.core.chrome.trace_result.html b/tools/telemetry/docs/telemetry.core.chrome.trace_result.html index e080fe9..92569ba 100644 --- a/tools/telemetry/docs/telemetry.core.chrome.trace_result.html +++ b/tools/telemetry/docs/telemetry.core.chrome.trace_result.html @@ -8,7 +8,7 @@ <td valign=bottom> <br> <font color="#ffffff" face="helvetica, arial"> <br><big><big><strong><a href="telemetry.html"><font color="#ffffff">telemetry</font></a>.<a href="telemetry.core.html"><font color="#ffffff">core</font></a>.<a href="telemetry.core.chrome.html"><font color="#ffffff">chrome</font></a>.trace_result</strong></big></big></font></td ><td align=right valign=bottom -><font color="#ffffff" face="helvetica, arial"><a href=".">index</a><br><a href="file:/Users/nduca/Local/chrome/src/tools/telemetry/telemetry/core/chrome/trace_result.py">/Users/nduca/Local/chrome/src/tools/telemetry/telemetry/core/chrome/trace_result.py</a></font></td></tr></table> +><font color="#ffffff" face="helvetica, arial"><a href=".">index</a><br><a href="../telemetry/core/chrome/trace_result.py">telemetry/core/chrome/trace_result.py</a></font></td></tr></table> <p><tt># Copyright (c) 2012 The Chromium Authors. All rights reserved.<br> # Use of this source code is governed by a BSD-style license that can be<br> # found in the LICENSE file.</tt></p> diff --git a/tools/telemetry/docs/telemetry.core.chrome.tracing_backend.html b/tools/telemetry/docs/telemetry.core.chrome.tracing_backend.html index c9da2ea..3d0a047 100644 --- a/tools/telemetry/docs/telemetry.core.chrome.tracing_backend.html +++ b/tools/telemetry/docs/telemetry.core.chrome.tracing_backend.html @@ -8,7 +8,7 @@ <td valign=bottom> <br> <font color="#ffffff" face="helvetica, arial"> <br><big><big><strong><a href="telemetry.html"><font color="#ffffff">telemetry</font></a>.<a href="telemetry.core.html"><font color="#ffffff">core</font></a>.<a href="telemetry.core.chrome.html"><font color="#ffffff">chrome</font></a>.tracing_backend</strong></big></big></font></td ><td align=right valign=bottom -><font color="#ffffff" face="helvetica, arial"><a href=".">index</a><br><a href="file:/Users/nduca/Local/chrome/src/tools/telemetry/telemetry/core/chrome/tracing_backend.py">/Users/nduca/Local/chrome/src/tools/telemetry/telemetry/core/chrome/tracing_backend.py</a></font></td></tr></table> +><font color="#ffffff" face="helvetica, arial"><a href=".">index</a><br><a href="../telemetry/core/chrome/tracing_backend.py">telemetry/core/chrome/tracing_backend.py</a></font></td></tr></table> <p><tt># Copyright (c) 2012 The Chromium Authors. All rights reserved.<br> # Use of this source code is governed by a BSD-style license that can be<br> # found in the LICENSE file.</tt></p> diff --git a/tools/telemetry/docs/telemetry.core.chrome.websocket.html b/tools/telemetry/docs/telemetry.core.chrome.websocket.html index 7c3fe54..a752b8a 100644 --- a/tools/telemetry/docs/telemetry.core.chrome.websocket.html +++ b/tools/telemetry/docs/telemetry.core.chrome.websocket.html @@ -8,7 +8,7 @@ <td valign=bottom> <br> <font color="#ffffff" face="helvetica, arial"> <br><big><big><strong><a href="telemetry.html"><font color="#ffffff">telemetry</font></a>.<a href="telemetry.core.html"><font color="#ffffff">core</font></a>.<a href="telemetry.core.chrome.html"><font color="#ffffff">chrome</font></a>.websocket</strong></big></big></font></td ><td align=right valign=bottom -><font color="#ffffff" face="helvetica, arial"><a href=".">index</a><br><a href="file:/Users/nduca/Local/chrome/src/tools/telemetry/telemetry/core/chrome/websocket.py">/Users/nduca/Local/chrome/src/tools/telemetry/telemetry/core/chrome/websocket.py</a></font></td></tr></table> +><font color="#ffffff" face="helvetica, arial"><a href=".">index</a><br><a href="../telemetry/core/chrome/websocket.py">telemetry/core/chrome/websocket.py</a></font></td></tr></table> <p><tt># Copyright (c) 2012 The Chromium Authors. All rights reserved.<br> # Use of this source code is governed by a BSD-style license that can be<br> # found in the LICENSE file.</tt></p> diff --git a/tools/telemetry/docs/telemetry.core.discover.html b/tools/telemetry/docs/telemetry.core.discover.html index b78fb91..ef33236 100644 --- a/tools/telemetry/docs/telemetry.core.discover.html +++ b/tools/telemetry/docs/telemetry.core.discover.html @@ -8,7 +8,7 @@ <td valign=bottom> <br> <font color="#ffffff" face="helvetica, arial"> <br><big><big><strong><a href="telemetry.html"><font color="#ffffff">telemetry</font></a>.<a href="telemetry.core.html"><font color="#ffffff">core</font></a>.discover</strong></big></big></font></td ><td align=right valign=bottom -><font color="#ffffff" face="helvetica, arial"><a href=".">index</a><br><a href="file:/Users/nduca/Local/chrome/src/tools/telemetry/telemetry/core/discover.py">/Users/nduca/Local/chrome/src/tools/telemetry/telemetry/core/discover.py</a></font></td></tr></table> +><font color="#ffffff" face="helvetica, arial"><a href=".">index</a><br><a href="../telemetry/core/discover.py">telemetry/core/discover.py</a></font></td></tr></table> <p><tt># Copyright (c) 2012 The Chromium Authors. All rights reserved.<br> # Use of this source code is governed by a BSD-style license that can be<br> # found in the LICENSE file.</tt></p> @@ -20,38 +20,34 @@ <tr><td bgcolor="#aa55cc"><tt> </tt></td><td> </td> <td width="100%"><table width="100%" summary="list"><tr><td width="25%" valign=top><a href="fnmatch.html">fnmatch</a><br> -<a href="inspect.html">inspect</a><br> -</td><td width="25%" valign=top><a href="logging.html">logging</a><br> -<a href="os.html">os</a><br> +</td><td width="25%" valign=top><a href="inspect.html">inspect</a><br> +</td><td width="25%" valign=top><a href="os.html">os</a><br> </td><td width="25%" valign=top><a href="re.html">re</a><br> -<a href="traceback.html">traceback</a><br> -</td><td width="25%" valign=top></td></tr></table></td></tr></table><p> +</td></tr></table></td></tr></table><p> <table width="100%" cellspacing=0 cellpadding=2 border=0 summary="section"> <tr bgcolor="#eeaa77"> <td colspan=3 valign=bottom> <br> <font color="#ffffff" face="helvetica, arial"><big><strong>Functions</strong></big></font></td></tr> <tr><td bgcolor="#eeaa77"><tt> </tt></td><td> </td> -<td width="100%"><dl><dt><a name="-DiscoverClasses"><strong>DiscoverClasses</strong></a>(start_dir, top_level_dir, base_class, pattern<font color="#909090">='*'</font>, import_error_should_raise<font color="#909090">=True</font>)</dt><dd><tt>Discover all classes in |start_dir| which subclass |base_class|.<br> +<td width="100%"><dl><dt><a name="-DiscoverClasses"><strong>DiscoverClasses</strong></a>(start_dir, top_level_dir, base_class, pattern<font color="#909090">='*'</font>, index_by_class_name<font color="#909090">=False</font>)</dt><dd><tt>Discover all classes in |start_dir| which subclass |base_class|.<br> <br> Args:<br> start_dir: The directory to recursively search.<br> top_level_dir: The top level of the package, for importing.<br> base_class: The base class to search for.<br> pattern: Unix shell-style pattern for filtering the filenames to import.<br> - import_error_should_raise: If false, then import errors are logged but do<br> - not stop discovery.<br> + index_by_class_name: If True, use class name converted to<br> + lowercase_with_underscores instead of module name in return dict keys.<br> <br> Returns:<br> - dict of {module_name: class}.</tt></dd></dl> - <dl><dt><a name="-DiscoverModules"><strong>DiscoverModules</strong></a>(start_dir, top_level_dir, pattern<font color="#909090">='*'</font>, import_error_should_raise<font color="#909090">=True</font>)</dt><dd><tt>Discover all modules in |start_dir| which match |pattern|.<br> + dict of {module_name: class} or {underscored_class_name: class}</tt></dd></dl> + <dl><dt><a name="-DiscoverModules"><strong>DiscoverModules</strong></a>(start_dir, top_level_dir, pattern<font color="#909090">='*'</font>)</dt><dd><tt>Discover all modules in |start_dir| which match |pattern|.<br> <br> Args:<br> start_dir: The directory to recursively search.<br> top_level_dir: The top level of the package, for importing.<br> pattern: Unix shell-style pattern for filtering the filenames to import.<br> - import_error_should_raise: If false, then import errors are logged but do<br> - not stop discovery.<br> <br> Returns:<br> list of modules.</tt></dd></dl> diff --git a/tools/telemetry/docs/telemetry.core.exceptions.html b/tools/telemetry/docs/telemetry.core.exceptions.html index 92c4e1e..04e4ba1 100644 --- a/tools/telemetry/docs/telemetry.core.exceptions.html +++ b/tools/telemetry/docs/telemetry.core.exceptions.html @@ -8,7 +8,7 @@ <td valign=bottom> <br> <font color="#ffffff" face="helvetica, arial"> <br><big><big><strong><a href="telemetry.html"><font color="#ffffff">telemetry</font></a>.<a href="telemetry.core.html"><font color="#ffffff">core</font></a>.exceptions</strong></big></big></font></td ><td align=right valign=bottom -><font color="#ffffff" face="helvetica, arial"><a href=".">index</a><br><a href="file:/Users/nduca/Local/chrome/src/tools/telemetry/telemetry/core/exceptions.py">/Users/nduca/Local/chrome/src/tools/telemetry/telemetry/core/exceptions.py</a></font></td></tr></table> +><font color="#ffffff" face="helvetica, arial"><a href=".">index</a><br><a href="../telemetry/core/exceptions.py">telemetry/core/exceptions.py</a></font></td></tr></table> <p><tt># Copyright (c) 2013 The Chromium Authors. All rights reserved.<br> # Use of this source code is governed by a BSD-style license that can be<br> # found in the LICENSE file.</tt></p> diff --git a/tools/telemetry/docs/telemetry.core.extension_dict.html b/tools/telemetry/docs/telemetry.core.extension_dict.html index 162c184..fd91c36 100644 --- a/tools/telemetry/docs/telemetry.core.extension_dict.html +++ b/tools/telemetry/docs/telemetry.core.extension_dict.html @@ -8,7 +8,7 @@ <td valign=bottom> <br> <font color="#ffffff" face="helvetica, arial"> <br><big><big><strong><a href="telemetry.html"><font color="#ffffff">telemetry</font></a>.<a href="telemetry.core.html"><font color="#ffffff">core</font></a>.extension_dict</strong></big></big></font></td ><td align=right valign=bottom -><font color="#ffffff" face="helvetica, arial"><a href=".">index</a><br><a href="file:/Users/nduca/Local/chrome/src/tools/telemetry/telemetry/core/extension_dict.py">/Users/nduca/Local/chrome/src/tools/telemetry/telemetry/core/extension_dict.py</a></font></td></tr></table> +><font color="#ffffff" face="helvetica, arial"><a href=".">index</a><br><a href="../telemetry/core/extension_dict.py">telemetry/core/extension_dict.py</a></font></td></tr></table> <p><tt># Copyright (c) 2012 The Chromium Authors. All rights reserved.<br> # Use of this source code is governed by a BSD-style license that can be<br> # found in the LICENSE file.</tt></p> diff --git a/tools/telemetry/docs/telemetry.core.extension_page.html b/tools/telemetry/docs/telemetry.core.extension_page.html index 8891159..49b0f32 100644 --- a/tools/telemetry/docs/telemetry.core.extension_page.html +++ b/tools/telemetry/docs/telemetry.core.extension_page.html @@ -8,7 +8,7 @@ <td valign=bottom> <br> <font color="#ffffff" face="helvetica, arial"> <br><big><big><strong><a href="telemetry.html"><font color="#ffffff">telemetry</font></a>.<a href="telemetry.core.html"><font color="#ffffff">core</font></a>.extension_page</strong></big></big></font></td ><td align=right valign=bottom -><font color="#ffffff" face="helvetica, arial"><a href=".">index</a><br><a href="file:/Users/nduca/Local/chrome/src/tools/telemetry/telemetry/core/extension_page.py">/Users/nduca/Local/chrome/src/tools/telemetry/telemetry/core/extension_page.py</a></font></td></tr></table> +><font color="#ffffff" face="helvetica, arial"><a href=".">index</a><br><a href="../telemetry/core/extension_page.py">telemetry/core/extension_page.py</a></font></td></tr></table> <p><tt># Copyright (c) 2012 The Chromium Authors. All rights reserved.<br> # Use of this source code is governed by a BSD-style license that can be<br> # found in the LICENSE file.</tt></p> diff --git a/tools/telemetry/docs/telemetry.core.extension_to_load.html b/tools/telemetry/docs/telemetry.core.extension_to_load.html index 8935b0a..280afdf 100644 --- a/tools/telemetry/docs/telemetry.core.extension_to_load.html +++ b/tools/telemetry/docs/telemetry.core.extension_to_load.html @@ -8,7 +8,7 @@ <td valign=bottom> <br> <font color="#ffffff" face="helvetica, arial"> <br><big><big><strong><a href="telemetry.html"><font color="#ffffff">telemetry</font></a>.<a href="telemetry.core.html"><font color="#ffffff">core</font></a>.extension_to_load</strong></big></big></font></td ><td align=right valign=bottom -><font color="#ffffff" face="helvetica, arial"><a href=".">index</a><br><a href="file:/Users/nduca/Local/chrome/src/tools/telemetry/telemetry/core/extension_to_load.py">/Users/nduca/Local/chrome/src/tools/telemetry/telemetry/core/extension_to_load.py</a></font></td></tr></table> +><font color="#ffffff" face="helvetica, arial"><a href=".">index</a><br><a href="../telemetry/core/extension_to_load.py">telemetry/core/extension_to_load.py</a></font></td></tr></table> <p><tt># Copyright (c) 2013 The Chromium Authors. All rights reserved.<br> # Use of this source code is governed by a BSD-style license that can be<br> # found in the LICENSE file.</tt></p> diff --git a/tools/telemetry/docs/telemetry.core.html b/tools/telemetry/docs/telemetry.core.html index d2372ac..86325f9 100644 --- a/tools/telemetry/docs/telemetry.core.html +++ b/tools/telemetry/docs/telemetry.core.html @@ -8,7 +8,7 @@ <td valign=bottom> <br> <font color="#ffffff" face="helvetica, arial"> <br><big><big><strong><a href="telemetry.html"><font color="#ffffff">telemetry</font></a>.core</strong></big></big></font></td ><td align=right valign=bottom -><font color="#ffffff" face="helvetica, arial"><a href=".">index</a><br><a href="file:/Users/nduca/Local/chrome/src/tools/telemetry/telemetry/core/__init__.py">/Users/nduca/Local/chrome/src/tools/telemetry/telemetry/core/__init__.py</a></font></td></tr></table> +><font color="#ffffff" face="helvetica, arial"><a href=".">index</a><br><a href="../telemetry/core/__init__.py">telemetry/core/__init__.py</a></font></td></tr></table> <p><tt># Copyright (c) 2012 The Chromium Authors. All rights reserved.<br> # Use of this source code is governed by a BSD-style license that can be<br> # found in the LICENSE file.</tt></p> diff --git a/tools/telemetry/docs/telemetry.core.memory_cache_http_server.html b/tools/telemetry/docs/telemetry.core.memory_cache_http_server.html index a3d6ee6..ffbbbc7 100644 --- a/tools/telemetry/docs/telemetry.core.memory_cache_http_server.html +++ b/tools/telemetry/docs/telemetry.core.memory_cache_http_server.html @@ -8,7 +8,7 @@ <td valign=bottom> <br> <font color="#ffffff" face="helvetica, arial"> <br><big><big><strong><a href="telemetry.html"><font color="#ffffff">telemetry</font></a>.<a href="telemetry.core.html"><font color="#ffffff">core</font></a>.memory_cache_http_server</strong></big></big></font></td ><td align=right valign=bottom -><font color="#ffffff" face="helvetica, arial"><a href=".">index</a><br><a href="file:/Users/nduca/Local/chrome/src/tools/telemetry/telemetry/core/memory_cache_http_server.py">/Users/nduca/Local/chrome/src/tools/telemetry/telemetry/core/memory_cache_http_server.py</a></font></td></tr></table> +><font color="#ffffff" face="helvetica, arial"><a href=".">index</a><br><a href="../telemetry/core/memory_cache_http_server.py">telemetry/core/memory_cache_http_server.py</a></font></td></tr></table> <p><tt># Copyright (c) 2012 The Chromium Authors. All rights reserved.<br> # Use of this source code is governed by a BSD-style license that can be<br> # found in the LICENSE file.</tt></p> @@ -366,7 +366,7 @@ Methods inherited from <a href="SocketServer.html#BaseRequestHandler">SocketServ </dl> <hr> Methods defined here:<br> -<dl><dt><a name="MemoryCacheHTTPServer-AddDirectoryToResourceMap"><strong>AddDirectoryToResourceMap</strong></a>(self, cwd)</dt><dd><tt>Loads all files in cwd into the in-memory resource map.</tt></dd></dl> +<dl><dt><a name="MemoryCacheHTTPServer-AddDirectoryToResourceMap"><strong>AddDirectoryToResourceMap</strong></a>(self, directory_path)</dt><dd><tt>Loads all files in directory_path into the in-memory resource map.</tt></dd></dl> <dl><dt><a name="MemoryCacheHTTPServer-AddFileToResourceMap"><strong>AddFileToResourceMap</strong></a>(self, file_path)</dt><dd><tt>Loads file_path into the in-memory resource map.</tt></dd></dl> diff --git a/tools/telemetry/docs/telemetry.core.platform.android_platform_backend.html b/tools/telemetry/docs/telemetry.core.platform.android_platform_backend.html index 7a857a9..d144345 100644 --- a/tools/telemetry/docs/telemetry.core.platform.android_platform_backend.html +++ b/tools/telemetry/docs/telemetry.core.platform.android_platform_backend.html @@ -8,7 +8,7 @@ <td valign=bottom> <br> <font color="#ffffff" face="helvetica, arial"> <br><big><big><strong><a href="telemetry.html"><font color="#ffffff">telemetry</font></a>.<a href="telemetry.core.html"><font color="#ffffff">core</font></a>.<a href="telemetry.core.platform.html"><font color="#ffffff">platform</font></a>.android_platform_backend</strong></big></big></font></td ><td align=right valign=bottom -><font color="#ffffff" face="helvetica, arial"><a href=".">index</a><br><a href="file:/Users/nduca/Local/chrome/src/tools/telemetry/telemetry/core/platform/android_platform_backend.py">/Users/nduca/Local/chrome/src/tools/telemetry/telemetry/core/platform/android_platform_backend.py</a></font></td></tr></table> +><font color="#ffffff" face="helvetica, arial"><a href=".">index</a><br><a href="../telemetry/core/platform/android_platform_backend.py">telemetry/core/platform/android_platform_backend.py</a></font></td></tr></table> <p><tt># Copyright (c) 2013 The Chromium Authors. All rights reserved.<br> # Use of this source code is governed by a BSD-style license that can be<br> # found in the LICENSE file.</tt></p> diff --git a/tools/telemetry/docs/telemetry.core.platform.cros_platform_backend.html b/tools/telemetry/docs/telemetry.core.platform.cros_platform_backend.html index 8c7959c..91f060c 100644 --- a/tools/telemetry/docs/telemetry.core.platform.cros_platform_backend.html +++ b/tools/telemetry/docs/telemetry.core.platform.cros_platform_backend.html @@ -8,7 +8,7 @@ <td valign=bottom> <br> <font color="#ffffff" face="helvetica, arial"> <br><big><big><strong><a href="telemetry.html"><font color="#ffffff">telemetry</font></a>.<a href="telemetry.core.html"><font color="#ffffff">core</font></a>.<a href="telemetry.core.platform.html"><font color="#ffffff">platform</font></a>.cros_platform_backend</strong></big></big></font></td ><td align=right valign=bottom -><font color="#ffffff" face="helvetica, arial"><a href=".">index</a><br><a href="file:/Users/nduca/Local/chrome/src/tools/telemetry/telemetry/core/platform/cros_platform_backend.py">/Users/nduca/Local/chrome/src/tools/telemetry/telemetry/core/platform/cros_platform_backend.py</a></font></td></tr></table> +><font color="#ffffff" face="helvetica, arial"><a href=".">index</a><br><a href="../telemetry/core/platform/cros_platform_backend.py">telemetry/core/platform/cros_platform_backend.py</a></font></td></tr></table> <p><tt># Copyright (c) 2013 The Chromium Authors. All rights reserved.<br> # Use of this source code is governed by a BSD-style license that can be<br> # found in the LICENSE file.</tt></p> diff --git a/tools/telemetry/docs/telemetry.core.platform.html b/tools/telemetry/docs/telemetry.core.platform.html index 4a9d9b6..66d420c 100644 --- a/tools/telemetry/docs/telemetry.core.platform.html +++ b/tools/telemetry/docs/telemetry.core.platform.html @@ -8,7 +8,7 @@ <td valign=bottom> <br> <font color="#ffffff" face="helvetica, arial"> <br><big><big><strong><a href="telemetry.html"><font color="#ffffff">telemetry</font></a>.<a href="telemetry.core.html"><font color="#ffffff">core</font></a>.platform</strong></big></big></font></td ><td align=right valign=bottom -><font color="#ffffff" face="helvetica, arial"><a href=".">index</a><br><a href="file:/Users/nduca/Local/chrome/src/tools/telemetry/telemetry/core/platform/__init__.py">/Users/nduca/Local/chrome/src/tools/telemetry/telemetry/core/platform/__init__.py</a></font></td></tr></table> +><font color="#ffffff" face="helvetica, arial"><a href=".">index</a><br><a href="../telemetry/core/platform/__init__.py">telemetry/core/platform/__init__.py</a></font></td></tr></table> <p><tt># Copyright (c) 2012 The Chromium Authors. All rights reserved.<br> # Use of this source code is governed by a BSD-style license that can be<br> # found in the LICENSE file.</tt></p> diff --git a/tools/telemetry/docs/telemetry.core.platform.linux_platform_backend.html b/tools/telemetry/docs/telemetry.core.platform.linux_platform_backend.html index 208e90e..2750c49 100644 --- a/tools/telemetry/docs/telemetry.core.platform.linux_platform_backend.html +++ b/tools/telemetry/docs/telemetry.core.platform.linux_platform_backend.html @@ -8,7 +8,7 @@ <td valign=bottom> <br> <font color="#ffffff" face="helvetica, arial"> <br><big><big><strong><a href="telemetry.html"><font color="#ffffff">telemetry</font></a>.<a href="telemetry.core.html"><font color="#ffffff">core</font></a>.<a href="telemetry.core.platform.html"><font color="#ffffff">platform</font></a>.linux_platform_backend</strong></big></big></font></td ><td align=right valign=bottom -><font color="#ffffff" face="helvetica, arial"><a href=".">index</a><br><a href="file:/Users/nduca/Local/chrome/src/tools/telemetry/telemetry/core/platform/linux_platform_backend.py">/Users/nduca/Local/chrome/src/tools/telemetry/telemetry/core/platform/linux_platform_backend.py</a></font></td></tr></table> +><font color="#ffffff" face="helvetica, arial"><a href=".">index</a><br><a href="../telemetry/core/platform/linux_platform_backend.py">telemetry/core/platform/linux_platform_backend.py</a></font></td></tr></table> <p><tt># Copyright (c) 2013 The Chromium Authors. All rights reserved.<br> # Use of this source code is governed by a BSD-style license that can be<br> # found in the LICENSE file.</tt></p> diff --git a/tools/telemetry/docs/telemetry.core.platform.mac_platform_backend.html b/tools/telemetry/docs/telemetry.core.platform.mac_platform_backend.html index 00a8064..85209ba 100644 --- a/tools/telemetry/docs/telemetry.core.platform.mac_platform_backend.html +++ b/tools/telemetry/docs/telemetry.core.platform.mac_platform_backend.html @@ -8,7 +8,7 @@ <td valign=bottom> <br> <font color="#ffffff" face="helvetica, arial"> <br><big><big><strong><a href="telemetry.html"><font color="#ffffff">telemetry</font></a>.<a href="telemetry.core.html"><font color="#ffffff">core</font></a>.<a href="telemetry.core.platform.html"><font color="#ffffff">platform</font></a>.mac_platform_backend</strong></big></big></font></td ><td align=right valign=bottom -><font color="#ffffff" face="helvetica, arial"><a href=".">index</a><br><a href="file:/Users/nduca/Local/chrome/src/tools/telemetry/telemetry/core/platform/mac_platform_backend.py">/Users/nduca/Local/chrome/src/tools/telemetry/telemetry/core/platform/mac_platform_backend.py</a></font></td></tr></table> +><font color="#ffffff" face="helvetica, arial"><a href=".">index</a><br><a href="../telemetry/core/platform/mac_platform_backend.py">telemetry/core/platform/mac_platform_backend.py</a></font></td></tr></table> <p><tt># Copyright (c) 2013 The Chromium Authors. All rights reserved.<br> # Use of this source code is governed by a BSD-style license that can be<br> # found in the LICENSE file.</tt></p> diff --git a/tools/telemetry/docs/telemetry.core.platform.platform_backend.html b/tools/telemetry/docs/telemetry.core.platform.platform_backend.html index 410d5ff..935d4dd 100644 --- a/tools/telemetry/docs/telemetry.core.platform.platform_backend.html +++ b/tools/telemetry/docs/telemetry.core.platform.platform_backend.html @@ -8,7 +8,7 @@ <td valign=bottom> <br> <font color="#ffffff" face="helvetica, arial"> <br><big><big><strong><a href="telemetry.html"><font color="#ffffff">telemetry</font></a>.<a href="telemetry.core.html"><font color="#ffffff">core</font></a>.<a href="telemetry.core.platform.html"><font color="#ffffff">platform</font></a>.platform_backend</strong></big></big></font></td ><td align=right valign=bottom -><font color="#ffffff" face="helvetica, arial"><a href=".">index</a><br><a href="file:/Users/nduca/Local/chrome/src/tools/telemetry/telemetry/core/platform/platform_backend.py">/Users/nduca/Local/chrome/src/tools/telemetry/telemetry/core/platform/platform_backend.py</a></font></td></tr></table> +><font color="#ffffff" face="helvetica, arial"><a href=".">index</a><br><a href="../telemetry/core/platform/platform_backend.py">telemetry/core/platform/platform_backend.py</a></font></td></tr></table> <p><tt># Copyright (c) 2013 The Chromium Authors. All rights reserved.<br> # Use of this source code is governed by a BSD-style license that can be<br> # found in the LICENSE file.</tt></p> diff --git a/tools/telemetry/docs/telemetry.core.platform.posix_platform_backend.html b/tools/telemetry/docs/telemetry.core.platform.posix_platform_backend.html index 517dc8a..c5fb191 100644 --- a/tools/telemetry/docs/telemetry.core.platform.posix_platform_backend.html +++ b/tools/telemetry/docs/telemetry.core.platform.posix_platform_backend.html @@ -8,7 +8,7 @@ <td valign=bottom> <br> <font color="#ffffff" face="helvetica, arial"> <br><big><big><strong><a href="telemetry.html"><font color="#ffffff">telemetry</font></a>.<a href="telemetry.core.html"><font color="#ffffff">core</font></a>.<a href="telemetry.core.platform.html"><font color="#ffffff">platform</font></a>.posix_platform_backend</strong></big></big></font></td ><td align=right valign=bottom -><font color="#ffffff" face="helvetica, arial"><a href=".">index</a><br><a href="file:/Users/nduca/Local/chrome/src/tools/telemetry/telemetry/core/platform/posix_platform_backend.py">/Users/nduca/Local/chrome/src/tools/telemetry/telemetry/core/platform/posix_platform_backend.py</a></font></td></tr></table> +><font color="#ffffff" face="helvetica, arial"><a href=".">index</a><br><a href="../telemetry/core/platform/posix_platform_backend.py">telemetry/core/platform/posix_platform_backend.py</a></font></td></tr></table> <p><tt># Copyright 2013 The Chromium Authors. All rights reserved.<br> # Use of this source code is governed by a BSD-style license that can be<br> # found in the LICENSE file.</tt></p> diff --git a/tools/telemetry/docs/telemetry.core.platform.profiler.html b/tools/telemetry/docs/telemetry.core.platform.profiler.html index 4823462..0c4aee3 100644 --- a/tools/telemetry/docs/telemetry.core.platform.profiler.html +++ b/tools/telemetry/docs/telemetry.core.platform.profiler.html @@ -8,7 +8,7 @@ <td valign=bottom> <br> <font color="#ffffff" face="helvetica, arial"> <br><big><big><strong><a href="telemetry.html"><font color="#ffffff">telemetry</font></a>.<a href="telemetry.core.html"><font color="#ffffff">core</font></a>.<a href="telemetry.core.platform.html"><font color="#ffffff">platform</font></a>.profiler</strong></big></big></font></td ><td align=right valign=bottom -><font color="#ffffff" face="helvetica, arial"><a href=".">index</a><br><a href="file:/Users/nduca/Local/chrome/src/tools/telemetry/telemetry/core/platform/profiler/__init__.py">/Users/nduca/Local/chrome/src/tools/telemetry/telemetry/core/platform/profiler/__init__.py</a></font></td></tr></table> +><font color="#ffffff" face="helvetica, arial"><a href=".">index</a><br><a href="../telemetry/core/platform/profiler/__init__.py">telemetry/core/platform/profiler/__init__.py</a></font></td></tr></table> <p><tt># Copyright (c) 2013 The Chromium Authors. All rights reserved.<br> # Use of this source code is governed by a BSD-style license that can be<br> # found in the LICENSE file.</tt></p> diff --git a/tools/telemetry/docs/telemetry.core.platform.profiler.iprofiler_profiler.html b/tools/telemetry/docs/telemetry.core.platform.profiler.iprofiler_profiler.html index adcdcd3..8fc387e 100644 --- a/tools/telemetry/docs/telemetry.core.platform.profiler.iprofiler_profiler.html +++ b/tools/telemetry/docs/telemetry.core.platform.profiler.iprofiler_profiler.html @@ -8,7 +8,7 @@ <td valign=bottom> <br> <font color="#ffffff" face="helvetica, arial"> <br><big><big><strong><a href="telemetry.html"><font color="#ffffff">telemetry</font></a>.<a href="telemetry.core.html"><font color="#ffffff">core</font></a>.<a href="telemetry.core.platform.html"><font color="#ffffff">platform</font></a>.<a href="telemetry.core.platform.profiler.html"><font color="#ffffff">profiler</font></a>.iprofiler_profiler</strong></big></big></font></td ><td align=right valign=bottom -><font color="#ffffff" face="helvetica, arial"><a href=".">index</a><br><a href="file:/Users/nduca/Local/chrome/src/tools/telemetry/telemetry/core/platform/profiler/iprofiler_profiler.py">/Users/nduca/Local/chrome/src/tools/telemetry/telemetry/core/platform/profiler/iprofiler_profiler.py</a></font></td></tr></table> +><font color="#ffffff" face="helvetica, arial"><a href=".">index</a><br><a href="../telemetry/core/platform/profiler/iprofiler_profiler.py">telemetry/core/platform/profiler/iprofiler_profiler.py</a></font></td></tr></table> <p><tt># Copyright (c) 2013 The Chromium Authors. All rights reserved.<br> # Use of this source code is governed by a BSD-style license that can be<br> # found in the LICENSE file.</tt></p> diff --git a/tools/telemetry/docs/telemetry.core.platform.profiler.java_heap_profiler.html b/tools/telemetry/docs/telemetry.core.platform.profiler.java_heap_profiler.html index 84fbdc0..998cd0b 100644 --- a/tools/telemetry/docs/telemetry.core.platform.profiler.java_heap_profiler.html +++ b/tools/telemetry/docs/telemetry.core.platform.profiler.java_heap_profiler.html @@ -8,7 +8,7 @@ <td valign=bottom> <br> <font color="#ffffff" face="helvetica, arial"> <br><big><big><strong><a href="telemetry.html"><font color="#ffffff">telemetry</font></a>.<a href="telemetry.core.html"><font color="#ffffff">core</font></a>.<a href="telemetry.core.platform.html"><font color="#ffffff">platform</font></a>.<a href="telemetry.core.platform.profiler.html"><font color="#ffffff">profiler</font></a>.java_heap_profiler</strong></big></big></font></td ><td align=right valign=bottom -><font color="#ffffff" face="helvetica, arial"><a href=".">index</a><br><a href="file:/Users/nduca/Local/chrome/src/tools/telemetry/telemetry/core/platform/profiler/java_heap_profiler.py">/Users/nduca/Local/chrome/src/tools/telemetry/telemetry/core/platform/profiler/java_heap_profiler.py</a></font></td></tr></table> +><font color="#ffffff" face="helvetica, arial"><a href=".">index</a><br><a href="../telemetry/core/platform/profiler/java_heap_profiler.py">telemetry/core/platform/profiler/java_heap_profiler.py</a></font></td></tr></table> <p><tt># Copyright (c) 2013 The Chromium Authors. All rights reserved.<br> # Use of this source code is governed by a BSD-style license that can be<br> # found in the LICENSE file.</tt></p> diff --git a/tools/telemetry/docs/telemetry.core.platform.profiler.perf_profiler.html b/tools/telemetry/docs/telemetry.core.platform.profiler.perf_profiler.html index 00d904c..cacded9 100644 --- a/tools/telemetry/docs/telemetry.core.platform.profiler.perf_profiler.html +++ b/tools/telemetry/docs/telemetry.core.platform.profiler.perf_profiler.html @@ -8,7 +8,7 @@ <td valign=bottom> <br> <font color="#ffffff" face="helvetica, arial"> <br><big><big><strong><a href="telemetry.html"><font color="#ffffff">telemetry</font></a>.<a href="telemetry.core.html"><font color="#ffffff">core</font></a>.<a href="telemetry.core.platform.html"><font color="#ffffff">platform</font></a>.<a href="telemetry.core.platform.profiler.html"><font color="#ffffff">profiler</font></a>.perf_profiler</strong></big></big></font></td ><td align=right valign=bottom -><font color="#ffffff" face="helvetica, arial"><a href=".">index</a><br><a href="file:/Users/nduca/Local/chrome/src/tools/telemetry/telemetry/core/platform/profiler/perf_profiler.py">/Users/nduca/Local/chrome/src/tools/telemetry/telemetry/core/platform/profiler/perf_profiler.py</a></font></td></tr></table> +><font color="#ffffff" face="helvetica, arial"><a href=".">index</a><br><a href="../telemetry/core/platform/profiler/perf_profiler.py">telemetry/core/platform/profiler/perf_profiler.py</a></font></td></tr></table> <p><tt># Copyright (c) 2013 The Chromium Authors. All rights reserved.<br> # Use of this source code is governed by a BSD-style license that can be<br> # found in the LICENSE file.</tt></p> diff --git a/tools/telemetry/docs/telemetry.core.platform.profiler.profiler_finder.html b/tools/telemetry/docs/telemetry.core.platform.profiler.profiler_finder.html index 23af808..38a7f20 100644 --- a/tools/telemetry/docs/telemetry.core.platform.profiler.profiler_finder.html +++ b/tools/telemetry/docs/telemetry.core.platform.profiler.profiler_finder.html @@ -8,7 +8,7 @@ <td valign=bottom> <br> <font color="#ffffff" face="helvetica, arial"> <br><big><big><strong><a href="telemetry.html"><font color="#ffffff">telemetry</font></a>.<a href="telemetry.core.html"><font color="#ffffff">core</font></a>.<a href="telemetry.core.platform.html"><font color="#ffffff">platform</font></a>.<a href="telemetry.core.platform.profiler.html"><font color="#ffffff">profiler</font></a>.profiler_finder</strong></big></big></font></td ><td align=right valign=bottom -><font color="#ffffff" face="helvetica, arial"><a href=".">index</a><br><a href="file:/Users/nduca/Local/chrome/src/tools/telemetry/telemetry/core/platform/profiler/profiler_finder.py">/Users/nduca/Local/chrome/src/tools/telemetry/telemetry/core/platform/profiler/profiler_finder.py</a></font></td></tr></table> +><font color="#ffffff" face="helvetica, arial"><a href=".">index</a><br><a href="../telemetry/core/platform/profiler/profiler_finder.py">telemetry/core/platform/profiler/profiler_finder.py</a></font></td></tr></table> <p><tt># Copyright (c) 2013 The Chromium Authors. All rights reserved.<br> # Use of this source code is governed by a BSD-style license that can be<br> # found in the LICENSE file.</tt></p> diff --git a/tools/telemetry/docs/telemetry.core.platform.profiler.sample_profiler.html b/tools/telemetry/docs/telemetry.core.platform.profiler.sample_profiler.html index 5323b00..ce60277 100644 --- a/tools/telemetry/docs/telemetry.core.platform.profiler.sample_profiler.html +++ b/tools/telemetry/docs/telemetry.core.platform.profiler.sample_profiler.html @@ -8,7 +8,7 @@ <td valign=bottom> <br> <font color="#ffffff" face="helvetica, arial"> <br><big><big><strong><a href="telemetry.html"><font color="#ffffff">telemetry</font></a>.<a href="telemetry.core.html"><font color="#ffffff">core</font></a>.<a href="telemetry.core.platform.html"><font color="#ffffff">platform</font></a>.<a href="telemetry.core.platform.profiler.html"><font color="#ffffff">profiler</font></a>.sample_profiler</strong></big></big></font></td ><td align=right valign=bottom -><font color="#ffffff" face="helvetica, arial"><a href=".">index</a><br><a href="file:/Users/nduca/Local/chrome/src/tools/telemetry/telemetry/core/platform/profiler/sample_profiler.py">/Users/nduca/Local/chrome/src/tools/telemetry/telemetry/core/platform/profiler/sample_profiler.py</a></font></td></tr></table> +><font color="#ffffff" face="helvetica, arial"><a href=".">index</a><br><a href="../telemetry/core/platform/profiler/sample_profiler.py">telemetry/core/platform/profiler/sample_profiler.py</a></font></td></tr></table> <p><tt># Copyright (c) 2013 The Chromium Authors. All rights reserved.<br> # Use of this source code is governed by a BSD-style license that can be<br> # found in the LICENSE file.</tt></p> diff --git a/tools/telemetry/docs/telemetry.core.platform.profiler.tcmalloc_heap_profiler.html b/tools/telemetry/docs/telemetry.core.platform.profiler.tcmalloc_heap_profiler.html index b1f53a7..9383ff1 100644 --- a/tools/telemetry/docs/telemetry.core.platform.profiler.tcmalloc_heap_profiler.html +++ b/tools/telemetry/docs/telemetry.core.platform.profiler.tcmalloc_heap_profiler.html @@ -8,7 +8,7 @@ <td valign=bottom> <br> <font color="#ffffff" face="helvetica, arial"> <br><big><big><strong><a href="telemetry.html"><font color="#ffffff">telemetry</font></a>.<a href="telemetry.core.html"><font color="#ffffff">core</font></a>.<a href="telemetry.core.platform.html"><font color="#ffffff">platform</font></a>.<a href="telemetry.core.platform.profiler.html"><font color="#ffffff">profiler</font></a>.tcmalloc_heap_profiler</strong></big></big></font></td ><td align=right valign=bottom -><font color="#ffffff" face="helvetica, arial"><a href=".">index</a><br><a href="file:/Users/nduca/Local/chrome/src/tools/telemetry/telemetry/core/platform/profiler/tcmalloc_heap_profiler.py">/Users/nduca/Local/chrome/src/tools/telemetry/telemetry/core/platform/profiler/tcmalloc_heap_profiler.py</a></font></td></tr></table> +><font color="#ffffff" face="helvetica, arial"><a href=".">index</a><br><a href="../telemetry/core/platform/profiler/tcmalloc_heap_profiler.py">telemetry/core/platform/profiler/tcmalloc_heap_profiler.py</a></font></td></tr></table> <p><tt># Copyright (c) 2013 The Chromium Authors. All rights reserved.<br> # Use of this source code is governed by a BSD-style license that can be<br> # found in the LICENSE file.</tt></p> diff --git a/tools/telemetry/docs/telemetry.core.platform.win_platform_backend.html b/tools/telemetry/docs/telemetry.core.platform.win_platform_backend.html index 870229f..abfa8d8 100644 --- a/tools/telemetry/docs/telemetry.core.platform.win_platform_backend.html +++ b/tools/telemetry/docs/telemetry.core.platform.win_platform_backend.html @@ -8,7 +8,7 @@ <td valign=bottom> <br> <font color="#ffffff" face="helvetica, arial"> <br><big><big><strong><a href="telemetry.html"><font color="#ffffff">telemetry</font></a>.<a href="telemetry.core.html"><font color="#ffffff">core</font></a>.<a href="telemetry.core.platform.html"><font color="#ffffff">platform</font></a>.win_platform_backend</strong></big></big></font></td ><td align=right valign=bottom -><font color="#ffffff" face="helvetica, arial"><a href=".">index</a><br><a href="file:/Users/nduca/Local/chrome/src/tools/telemetry/telemetry/core/platform/win_platform_backend.py">/Users/nduca/Local/chrome/src/tools/telemetry/telemetry/core/platform/win_platform_backend.py</a></font></td></tr></table> +><font color="#ffffff" face="helvetica, arial"><a href=".">index</a><br><a href="../telemetry/core/platform/win_platform_backend.py">telemetry/core/platform/win_platform_backend.py</a></font></td></tr></table> <p><tt># Copyright (c) 2013 The Chromium Authors. All rights reserved.<br> # Use of this source code is governed by a BSD-style license that can be<br> # found in the LICENSE file.</tt></p> diff --git a/tools/telemetry/docs/telemetry.core.possible_browser.html b/tools/telemetry/docs/telemetry.core.possible_browser.html index 8a3ed8bd..d23432c 100644 --- a/tools/telemetry/docs/telemetry.core.possible_browser.html +++ b/tools/telemetry/docs/telemetry.core.possible_browser.html @@ -8,7 +8,7 @@ <td valign=bottom> <br> <font color="#ffffff" face="helvetica, arial"> <br><big><big><strong><a href="telemetry.html"><font color="#ffffff">telemetry</font></a>.<a href="telemetry.core.html"><font color="#ffffff">core</font></a>.possible_browser</strong></big></big></font></td ><td align=right valign=bottom -><font color="#ffffff" face="helvetica, arial"><a href=".">index</a><br><a href="file:/Users/nduca/Local/chrome/src/tools/telemetry/telemetry/core/possible_browser.py">/Users/nduca/Local/chrome/src/tools/telemetry/telemetry/core/possible_browser.py</a></font></td></tr></table> +><font color="#ffffff" face="helvetica, arial"><a href=".">index</a><br><a href="../telemetry/core/possible_browser.py">telemetry/core/possible_browser.py</a></font></td></tr></table> <p><tt># Copyright (c) 2012 The Chromium Authors. All rights reserved.<br> # Use of this source code is governed by a BSD-style license that can be<br> # found in the LICENSE file.</tt></p> diff --git a/tools/telemetry/docs/telemetry.core.profile_creator.html b/tools/telemetry/docs/telemetry.core.profile_creator.html index 35386fc..5427a9b 100644 --- a/tools/telemetry/docs/telemetry.core.profile_creator.html +++ b/tools/telemetry/docs/telemetry.core.profile_creator.html @@ -8,7 +8,7 @@ <td valign=bottom> <br> <font color="#ffffff" face="helvetica, arial"> <br><big><big><strong><a href="telemetry.html"><font color="#ffffff">telemetry</font></a>.<a href="telemetry.core.html"><font color="#ffffff">core</font></a>.profile_creator</strong></big></big></font></td ><td align=right valign=bottom -><font color="#ffffff" face="helvetica, arial"><a href=".">index</a><br><a href="file:/Users/nduca/Local/chrome/src/tools/telemetry/telemetry/core/profile_creator.py">/Users/nduca/Local/chrome/src/tools/telemetry/telemetry/core/profile_creator.py</a></font></td></tr></table> +><font color="#ffffff" face="helvetica, arial"><a href=".">index</a><br><a href="../telemetry/core/profile_creator.py">telemetry/core/profile_creator.py</a></font></td></tr></table> <p><tt># Copyright (c) 2013 The Chromium Authors. All rights reserved.<br> # Use of this source code is governed by a BSD-style license that can be<br> # found in the LICENSE file.</tt></p> diff --git a/tools/telemetry/docs/telemetry.core.profile_types.html b/tools/telemetry/docs/telemetry.core.profile_types.html index fedff7b..2a14b74 100644 --- a/tools/telemetry/docs/telemetry.core.profile_types.html +++ b/tools/telemetry/docs/telemetry.core.profile_types.html @@ -8,7 +8,7 @@ <td valign=bottom> <br> <font color="#ffffff" face="helvetica, arial"> <br><big><big><strong><a href="telemetry.html"><font color="#ffffff">telemetry</font></a>.<a href="telemetry.core.html"><font color="#ffffff">core</font></a>.profile_types</strong></big></big></font></td ><td align=right valign=bottom -><font color="#ffffff" face="helvetica, arial"><a href=".">index</a><br><a href="file:/Users/nduca/Local/chrome/src/tools/telemetry/telemetry/core/profile_types.py">/Users/nduca/Local/chrome/src/tools/telemetry/telemetry/core/profile_types.py</a></font></td></tr></table> +><font color="#ffffff" face="helvetica, arial"><a href=".">index</a><br><a href="../telemetry/core/profile_types.py">telemetry/core/profile_types.py</a></font></td></tr></table> <p><tt># Copyright (c) 2013 The Chromium Authors. All rights reserved.<br> # Use of this source code is governed by a BSD-style license that can be<br> # found in the LICENSE file.</tt></p> diff --git a/tools/telemetry/docs/telemetry.core.tab.html b/tools/telemetry/docs/telemetry.core.tab.html index 1fba4ac..e74ffe8 100644 --- a/tools/telemetry/docs/telemetry.core.tab.html +++ b/tools/telemetry/docs/telemetry.core.tab.html @@ -8,7 +8,7 @@ <td valign=bottom> <br> <font color="#ffffff" face="helvetica, arial"> <br><big><big><strong><a href="telemetry.html"><font color="#ffffff">telemetry</font></a>.<a href="telemetry.core.html"><font color="#ffffff">core</font></a>.tab</strong></big></big></font></td ><td align=right valign=bottom -><font color="#ffffff" face="helvetica, arial"><a href=".">index</a><br><a href="file:/Users/nduca/Local/chrome/src/tools/telemetry/telemetry/core/tab.py">/Users/nduca/Local/chrome/src/tools/telemetry/telemetry/core/tab.py</a></font></td></tr></table> +><font color="#ffffff" face="helvetica, arial"><a href=".">index</a><br><a href="../telemetry/core/tab.py">telemetry/core/tab.py</a></font></td></tr></table> <p><tt># Copyright (c) 2012 The Chromium Authors. All rights reserved.<br> # Use of this source code is governed by a BSD-style license that can be<br> # found in the LICENSE file.</tt></p> diff --git a/tools/telemetry/docs/telemetry.core.tab_list.html b/tools/telemetry/docs/telemetry.core.tab_list.html index 91bffab..897177d 100644 --- a/tools/telemetry/docs/telemetry.core.tab_list.html +++ b/tools/telemetry/docs/telemetry.core.tab_list.html @@ -8,7 +8,7 @@ <td valign=bottom> <br> <font color="#ffffff" face="helvetica, arial"> <br><big><big><strong><a href="telemetry.html"><font color="#ffffff">telemetry</font></a>.<a href="telemetry.core.html"><font color="#ffffff">core</font></a>.tab_list</strong></big></big></font></td ><td align=right valign=bottom -><font color="#ffffff" face="helvetica, arial"><a href=".">index</a><br><a href="file:/Users/nduca/Local/chrome/src/tools/telemetry/telemetry/core/tab_list.py">/Users/nduca/Local/chrome/src/tools/telemetry/telemetry/core/tab_list.py</a></font></td></tr></table> +><font color="#ffffff" face="helvetica, arial"><a href=".">index</a><br><a href="../telemetry/core/tab_list.py">telemetry/core/tab_list.py</a></font></td></tr></table> <p><tt># Copyright (c) 2012 The Chromium Authors. All rights reserved.<br> # Use of this source code is governed by a BSD-style license that can be<br> # found in the LICENSE file.</tt></p> diff --git a/tools/telemetry/docs/telemetry.core.temporary_http_server.html b/tools/telemetry/docs/telemetry.core.temporary_http_server.html index 01e0aec..0d4f59c 100644 --- a/tools/telemetry/docs/telemetry.core.temporary_http_server.html +++ b/tools/telemetry/docs/telemetry.core.temporary_http_server.html @@ -8,7 +8,7 @@ <td valign=bottom> <br> <font color="#ffffff" face="helvetica, arial"> <br><big><big><strong><a href="telemetry.html"><font color="#ffffff">telemetry</font></a>.<a href="telemetry.core.html"><font color="#ffffff">core</font></a>.temporary_http_server</strong></big></big></font></td ><td align=right valign=bottom -><font color="#ffffff" face="helvetica, arial"><a href=".">index</a><br><a href="file:/Users/nduca/Local/chrome/src/tools/telemetry/telemetry/core/temporary_http_server.py">/Users/nduca/Local/chrome/src/tools/telemetry/telemetry/core/temporary_http_server.py</a></font></td></tr></table> +><font color="#ffffff" face="helvetica, arial"><a href=".">index</a><br><a href="../telemetry/core/temporary_http_server.py">telemetry/core/temporary_http_server.py</a></font></td></tr></table> <p><tt># Copyright (c) 2012 The Chromium Authors. All rights reserved.<br> # Use of this source code is governed by a BSD-style license that can be<br> # found in the LICENSE file.</tt></p> diff --git a/tools/telemetry/docs/telemetry.core.timeline.event.html b/tools/telemetry/docs/telemetry.core.timeline.event.html index 9bd02cf..50baf1e 100644 --- a/tools/telemetry/docs/telemetry.core.timeline.event.html +++ b/tools/telemetry/docs/telemetry.core.timeline.event.html @@ -8,7 +8,7 @@ <td valign=bottom> <br> <font color="#ffffff" face="helvetica, arial"> <br><big><big><strong><a href="telemetry.html"><font color="#ffffff">telemetry</font></a>.<a href="telemetry.core.html"><font color="#ffffff">core</font></a>.<a href="telemetry.core.timeline.html"><font color="#ffffff">timeline</font></a>.event</strong></big></big></font></td ><td align=right valign=bottom -><font color="#ffffff" face="helvetica, arial"><a href=".">index</a><br><a href="file:/Users/nduca/Local/chrome/src/tools/telemetry/telemetry/core/timeline/event.py">/Users/nduca/Local/chrome/src/tools/telemetry/telemetry/core/timeline/event.py</a></font></td></tr></table> +><font color="#ffffff" face="helvetica, arial"><a href=".">index</a><br><a href="../telemetry/core/timeline/event.py">telemetry/core/timeline/event.py</a></font></td></tr></table> <p><tt># Copyright (c) 2013 The Chromium Authors. All rights reserved.<br> # Use of this source code is governed by a BSD-style license that can be<br> # found in the LICENSE file.</tt></p> diff --git a/tools/telemetry/docs/telemetry.core.timeline.html b/tools/telemetry/docs/telemetry.core.timeline.html index dfa2405..27bed6f 100644 --- a/tools/telemetry/docs/telemetry.core.timeline.html +++ b/tools/telemetry/docs/telemetry.core.timeline.html @@ -8,7 +8,7 @@ <td valign=bottom> <br> <font color="#ffffff" face="helvetica, arial"> <br><big><big><strong><a href="telemetry.html"><font color="#ffffff">telemetry</font></a>.<a href="telemetry.core.html"><font color="#ffffff">core</font></a>.timeline</strong></big></big></font></td ><td align=right valign=bottom -><font color="#ffffff" face="helvetica, arial"><a href=".">index</a><br><a href="file:/Users/nduca/Local/chrome/src/tools/telemetry/telemetry/core/timeline/__init__.py">/Users/nduca/Local/chrome/src/tools/telemetry/telemetry/core/timeline/__init__.py</a></font></td></tr></table> +><font color="#ffffff" face="helvetica, arial"><a href=".">index</a><br><a href="../telemetry/core/timeline/__init__.py">telemetry/core/timeline/__init__.py</a></font></td></tr></table> <p></p> <p> <table width="100%" cellspacing=0 cellpadding=2 border=0 summary="section"> diff --git a/tools/telemetry/docs/telemetry.core.timeline.importer.html b/tools/telemetry/docs/telemetry.core.timeline.importer.html index 24bb405..19d41f6 100644 --- a/tools/telemetry/docs/telemetry.core.timeline.importer.html +++ b/tools/telemetry/docs/telemetry.core.timeline.importer.html @@ -8,7 +8,7 @@ <td valign=bottom> <br> <font color="#ffffff" face="helvetica, arial"> <br><big><big><strong><a href="telemetry.html"><font color="#ffffff">telemetry</font></a>.<a href="telemetry.core.html"><font color="#ffffff">core</font></a>.<a href="telemetry.core.timeline.html"><font color="#ffffff">timeline</font></a>.importer</strong></big></big></font></td ><td align=right valign=bottom -><font color="#ffffff" face="helvetica, arial"><a href=".">index</a><br><a href="file:/Users/nduca/Local/chrome/src/tools/telemetry/telemetry/core/timeline/importer.py">/Users/nduca/Local/chrome/src/tools/telemetry/telemetry/core/timeline/importer.py</a></font></td></tr></table> +><font color="#ffffff" face="helvetica, arial"><a href=".">index</a><br><a href="../telemetry/core/timeline/importer.py">telemetry/core/timeline/importer.py</a></font></td></tr></table> <p><tt># Copyright (c) 2013 The Chromium Authors. All rights reserved.<br> # Use of this source code is governed by a BSD-style license that can be<br> # found in the LICENSE file.</tt></p> diff --git a/tools/telemetry/docs/telemetry.core.timeline.inspector_importer.html b/tools/telemetry/docs/telemetry.core.timeline.inspector_importer.html index 52f4b51..f8d78fe 100644 --- a/tools/telemetry/docs/telemetry.core.timeline.inspector_importer.html +++ b/tools/telemetry/docs/telemetry.core.timeline.inspector_importer.html @@ -8,7 +8,7 @@ <td valign=bottom> <br> <font color="#ffffff" face="helvetica, arial"> <br><big><big><strong><a href="telemetry.html"><font color="#ffffff">telemetry</font></a>.<a href="telemetry.core.html"><font color="#ffffff">core</font></a>.<a href="telemetry.core.timeline.html"><font color="#ffffff">timeline</font></a>.inspector_importer</strong></big></big></font></td ><td align=right valign=bottom -><font color="#ffffff" face="helvetica, arial"><a href=".">index</a><br><a href="file:/Users/nduca/Local/chrome/src/tools/telemetry/telemetry/core/timeline/inspector_importer.py">/Users/nduca/Local/chrome/src/tools/telemetry/telemetry/core/timeline/inspector_importer.py</a></font></td></tr></table> +><font color="#ffffff" face="helvetica, arial"><a href=".">index</a><br><a href="../telemetry/core/timeline/inspector_importer.py">telemetry/core/timeline/inspector_importer.py</a></font></td></tr></table> <p><tt>Imports event data obtained from the inspector's timeline.</tt></p> <p> <table width="100%" cellspacing=0 cellpadding=2 border=0 summary="section"> diff --git a/tools/telemetry/docs/telemetry.core.timeline.model.html b/tools/telemetry/docs/telemetry.core.timeline.model.html index 22e80ce..9f5b454 100644 --- a/tools/telemetry/docs/telemetry.core.timeline.model.html +++ b/tools/telemetry/docs/telemetry.core.timeline.model.html @@ -8,7 +8,7 @@ <td valign=bottom> <br> <font color="#ffffff" face="helvetica, arial"> <br><big><big><strong><a href="telemetry.html"><font color="#ffffff">telemetry</font></a>.<a href="telemetry.core.html"><font color="#ffffff">core</font></a>.<a href="telemetry.core.timeline.html"><font color="#ffffff">timeline</font></a>.model</strong></big></big></font></td ><td align=right valign=bottom -><font color="#ffffff" face="helvetica, arial"><a href=".">index</a><br><a href="file:/Users/nduca/Local/chrome/src/tools/telemetry/telemetry/core/timeline/model.py">/Users/nduca/Local/chrome/src/tools/telemetry/telemetry/core/timeline/model.py</a></font></td></tr></table> +><font color="#ffffff" face="helvetica, arial"><a href=".">index</a><br><a href="../telemetry/core/timeline/model.py">telemetry/core/timeline/model.py</a></font></td></tr></table> <p><tt>A container for timeline-based events and traces and can handle importing<br> raw event data from different sources. This model closely resembles that in the<br> trace_viewer project:<br> diff --git a/tools/telemetry/docs/telemetry.core.timeline.trace_event_importer.html b/tools/telemetry/docs/telemetry.core.timeline.trace_event_importer.html index dcf8dfd..804f51c 100644 --- a/tools/telemetry/docs/telemetry.core.timeline.trace_event_importer.html +++ b/tools/telemetry/docs/telemetry.core.timeline.trace_event_importer.html @@ -8,7 +8,7 @@ <td valign=bottom> <br> <font color="#ffffff" face="helvetica, arial"> <br><big><big><strong><a href="telemetry.html"><font color="#ffffff">telemetry</font></a>.<a href="telemetry.core.html"><font color="#ffffff">core</font></a>.<a href="telemetry.core.timeline.html"><font color="#ffffff">timeline</font></a>.trace_event_importer</strong></big></big></font></td ><td align=right valign=bottom -><font color="#ffffff" face="helvetica, arial"><a href=".">index</a><br><a href="file:/Users/nduca/Local/chrome/src/tools/telemetry/telemetry/core/timeline/trace_event_importer.py">/Users/nduca/Local/chrome/src/tools/telemetry/telemetry/core/timeline/trace_event_importer.py</a></font></td></tr></table> +><font color="#ffffff" face="helvetica, arial"><a href=".">index</a><br><a href="../telemetry/core/timeline/trace_event_importer.py">telemetry/core/timeline/trace_event_importer.py</a></font></td></tr></table> <p><tt># Copyright (c) 2012 The Chromium Authors. All rights reserved.<br> # Use of this source code is governed by a BSD-style license that can be<br> # found in the LICENSE file.</tt></p> diff --git a/tools/telemetry/docs/telemetry.core.user_agent.html b/tools/telemetry/docs/telemetry.core.user_agent.html index eb69745..02f4bb9 100644 --- a/tools/telemetry/docs/telemetry.core.user_agent.html +++ b/tools/telemetry/docs/telemetry.core.user_agent.html @@ -8,7 +8,7 @@ <td valign=bottom> <br> <font color="#ffffff" face="helvetica, arial"> <br><big><big><strong><a href="telemetry.html"><font color="#ffffff">telemetry</font></a>.<a href="telemetry.core.html"><font color="#ffffff">core</font></a>.user_agent</strong></big></big></font></td ><td align=right valign=bottom -><font color="#ffffff" face="helvetica, arial"><a href=".">index</a><br><a href="file:/Users/nduca/Local/chrome/src/tools/telemetry/telemetry/core/user_agent.py">/Users/nduca/Local/chrome/src/tools/telemetry/telemetry/core/user_agent.py</a></font></td></tr></table> +><font color="#ffffff" face="helvetica, arial"><a href=".">index</a><br><a href="../telemetry/core/user_agent.py">telemetry/core/user_agent.py</a></font></td></tr></table> <p><tt># Copyright (c) 2012 The Chromium Authors. All rights reserved.<br> # Use of this source code is governed by a BSD-style license that can be<br> # found in the LICENSE file.</tt></p> diff --git a/tools/telemetry/docs/telemetry.core.util.html b/tools/telemetry/docs/telemetry.core.util.html index a2537ce..22e4066 100644 --- a/tools/telemetry/docs/telemetry.core.util.html +++ b/tools/telemetry/docs/telemetry.core.util.html @@ -8,7 +8,7 @@ <td valign=bottom> <br> <font color="#ffffff" face="helvetica, arial"> <br><big><big><strong><a href="telemetry.html"><font color="#ffffff">telemetry</font></a>.<a href="telemetry.core.html"><font color="#ffffff">core</font></a>.util</strong></big></big></font></td ><td align=right valign=bottom -><font color="#ffffff" face="helvetica, arial"><a href=".">index</a><br><a href="file:/Users/nduca/Local/chrome/src/tools/telemetry/telemetry/core/util.py">/Users/nduca/Local/chrome/src/tools/telemetry/telemetry/core/util.py</a></font></td></tr></table> +><font color="#ffffff" face="helvetica, arial"><a href=".">index</a><br><a href="../telemetry/core/util.py">telemetry/core/util.py</a></font></td></tr></table> <p><tt># Copyright (c) 2012 The Chromium Authors. All rights reserved.<br> # Use of this source code is governed by a BSD-style license that can be<br> # found in the LICENSE file.</tt></p> diff --git a/tools/telemetry/docs/telemetry.core.web_contents.html b/tools/telemetry/docs/telemetry.core.web_contents.html index 7bd421a..86bcd14 100644 --- a/tools/telemetry/docs/telemetry.core.web_contents.html +++ b/tools/telemetry/docs/telemetry.core.web_contents.html @@ -8,7 +8,7 @@ <td valign=bottom> <br> <font color="#ffffff" face="helvetica, arial"> <br><big><big><strong><a href="telemetry.html"><font color="#ffffff">telemetry</font></a>.<a href="telemetry.core.html"><font color="#ffffff">core</font></a>.web_contents</strong></big></big></font></td ><td align=right valign=bottom -><font color="#ffffff" face="helvetica, arial"><a href=".">index</a><br><a href="file:/Users/nduca/Local/chrome/src/tools/telemetry/telemetry/core/web_contents.py">/Users/nduca/Local/chrome/src/tools/telemetry/telemetry/core/web_contents.py</a></font></td></tr></table> +><font color="#ffffff" face="helvetica, arial"><a href=".">index</a><br><a href="../telemetry/core/web_contents.py">telemetry/core/web_contents.py</a></font></td></tr></table> <p><tt># Copyright (c) 2012 The Chromium Authors. All rights reserved.<br> # Use of this source code is governed by a BSD-style license that can be<br> # found in the LICENSE file.</tt></p> diff --git a/tools/telemetry/docs/telemetry.core.wpr_modes.html b/tools/telemetry/docs/telemetry.core.wpr_modes.html index dac4835..99c8ac0 100644 --- a/tools/telemetry/docs/telemetry.core.wpr_modes.html +++ b/tools/telemetry/docs/telemetry.core.wpr_modes.html @@ -8,7 +8,7 @@ <td valign=bottom> <br> <font color="#ffffff" face="helvetica, arial"> <br><big><big><strong><a href="telemetry.html"><font color="#ffffff">telemetry</font></a>.<a href="telemetry.core.html"><font color="#ffffff">core</font></a>.wpr_modes</strong></big></big></font></td ><td align=right valign=bottom -><font color="#ffffff" face="helvetica, arial"><a href=".">index</a><br><a href="file:/Users/nduca/Local/chrome/src/tools/telemetry/telemetry/core/wpr_modes.py">/Users/nduca/Local/chrome/src/tools/telemetry/telemetry/core/wpr_modes.py</a></font></td></tr></table> +><font color="#ffffff" face="helvetica, arial"><a href=".">index</a><br><a href="../telemetry/core/wpr_modes.py">telemetry/core/wpr_modes.py</a></font></td></tr></table> <p><tt># Copyright (c) 2012 The Chromium Authors. All rights reserved.<br> # Use of this source code is governed by a BSD-style license that can be<br> # found in the LICENSE file.</tt></p> diff --git a/tools/telemetry/docs/telemetry.core.wpr_server.html b/tools/telemetry/docs/telemetry.core.wpr_server.html index 7677b22..14476eb 100644 --- a/tools/telemetry/docs/telemetry.core.wpr_server.html +++ b/tools/telemetry/docs/telemetry.core.wpr_server.html @@ -8,7 +8,7 @@ <td valign=bottom> <br> <font color="#ffffff" face="helvetica, arial"> <br><big><big><strong><a href="telemetry.html"><font color="#ffffff">telemetry</font></a>.<a href="telemetry.core.html"><font color="#ffffff">core</font></a>.wpr_server</strong></big></big></font></td ><td align=right valign=bottom -><font color="#ffffff" face="helvetica, arial"><a href=".">index</a><br><a href="file:/Users/nduca/Local/chrome/src/tools/telemetry/telemetry/core/wpr_server.py">/Users/nduca/Local/chrome/src/tools/telemetry/telemetry/core/wpr_server.py</a></font></td></tr></table> +><font color="#ffffff" face="helvetica, arial"><a href=".">index</a><br><a href="../telemetry/core/wpr_server.py">telemetry/core/wpr_server.py</a></font></td></tr></table> <p><tt># Copyright (c) 2012 The Chromium Authors. All rights reserved.<br> # Use of this source code is governed by a BSD-style license that can be<br> # found in the LICENSE file.</tt></p> diff --git a/tools/telemetry/docs/telemetry.html b/tools/telemetry/docs/telemetry.html index 5f3b8f0..03019f4 100644 --- a/tools/telemetry/docs/telemetry.html +++ b/tools/telemetry/docs/telemetry.html @@ -8,7 +8,7 @@ <td valign=bottom> <br> <font color="#ffffff" face="helvetica, arial"> <br><big><big><strong>telemetry</strong></big></big></font></td ><td align=right valign=bottom -><font color="#ffffff" face="helvetica, arial"><a href=".">index</a><br><a href="file:/Users/nduca/Local/chrome/src/tools/telemetry/telemetry/__init__.py">/Users/nduca/Local/chrome/src/tools/telemetry/telemetry/__init__.py</a></font></td></tr></table> +><font color="#ffffff" face="helvetica, arial"><a href=".">index</a><br><a href="../telemetry/__init__.py">telemetry/__init__.py</a></font></td></tr></table> <p><tt>A library for cross-platform browser tests.</tt></p> <p> <table width="100%" cellspacing=0 cellpadding=2 border=0 summary="section"> diff --git a/tools/telemetry/docs/telemetry.page.actions.all_page_actions.html b/tools/telemetry/docs/telemetry.page.actions.all_page_actions.html index 2c94152..5427691 100644 --- a/tools/telemetry/docs/telemetry.page.actions.all_page_actions.html +++ b/tools/telemetry/docs/telemetry.page.actions.all_page_actions.html @@ -8,7 +8,7 @@ <td valign=bottom> <br> <font color="#ffffff" face="helvetica, arial"> <br><big><big><strong><a href="telemetry.html"><font color="#ffffff">telemetry</font></a>.<a href="telemetry.page.html"><font color="#ffffff">page</font></a>.<a href="telemetry.page.actions.html"><font color="#ffffff">actions</font></a>.all_page_actions</strong></big></big></font></td ><td align=right valign=bottom -><font color="#ffffff" face="helvetica, arial"><a href=".">index</a><br><a href="file:/Users/nduca/Local/chrome/src/tools/telemetry/telemetry/page/actions/all_page_actions.py">/Users/nduca/Local/chrome/src/tools/telemetry/telemetry/page/actions/all_page_actions.py</a></font></td></tr></table> +><font color="#ffffff" face="helvetica, arial"><a href=".">index</a><br><a href="../telemetry/page/actions/all_page_actions.py">telemetry/page/actions/all_page_actions.py</a></font></td></tr></table> <p><tt># Copyright (c) 2012 The Chromium Authors. All rights reserved.<br> # Use of this source code is governed by a BSD-style license that can be<br> # found in the LICENSE file.</tt></p> diff --git a/tools/telemetry/docs/telemetry.page.actions.click_element.html b/tools/telemetry/docs/telemetry.page.actions.click_element.html index b6b227c..a55f8fc 100644 --- a/tools/telemetry/docs/telemetry.page.actions.click_element.html +++ b/tools/telemetry/docs/telemetry.page.actions.click_element.html @@ -8,7 +8,7 @@ <td valign=bottom> <br> <font color="#ffffff" face="helvetica, arial"> <br><big><big><strong><a href="telemetry.html"><font color="#ffffff">telemetry</font></a>.<a href="telemetry.page.html"><font color="#ffffff">page</font></a>.<a href="telemetry.page.actions.html"><font color="#ffffff">actions</font></a>.click_element</strong></big></big></font></td ><td align=right valign=bottom -><font color="#ffffff" face="helvetica, arial"><a href=".">index</a><br><a href="file:/Users/nduca/Local/chrome/src/tools/telemetry/telemetry/page/actions/click_element.py">/Users/nduca/Local/chrome/src/tools/telemetry/telemetry/page/actions/click_element.py</a></font></td></tr></table> +><font color="#ffffff" face="helvetica, arial"><a href=".">index</a><br><a href="../telemetry/page/actions/click_element.py">telemetry/page/actions/click_element.py</a></font></td></tr></table> <p><tt># Copyright (c) 2012 The Chromium Authors. All rights reserved.<br> # Use of this source code is governed by a BSD-style license that can be<br> # found in the LICENSE file.</tt></p> diff --git a/tools/telemetry/docs/telemetry.page.actions.html b/tools/telemetry/docs/telemetry.page.actions.html index 838387b..a9733e2 100644 --- a/tools/telemetry/docs/telemetry.page.actions.html +++ b/tools/telemetry/docs/telemetry.page.actions.html @@ -8,7 +8,7 @@ <td valign=bottom> <br> <font color="#ffffff" face="helvetica, arial"> <br><big><big><strong><a href="telemetry.html"><font color="#ffffff">telemetry</font></a>.<a href="telemetry.page.html"><font color="#ffffff">page</font></a>.actions</strong></big></big></font></td ><td align=right valign=bottom -><font color="#ffffff" face="helvetica, arial"><a href=".">index</a><br><a href="file:/Users/nduca/Local/chrome/src/tools/telemetry/telemetry/page/actions/__init__.py">/Users/nduca/Local/chrome/src/tools/telemetry/telemetry/page/actions/__init__.py</a></font></td></tr></table> +><font color="#ffffff" face="helvetica, arial"><a href=".">index</a><br><a href="../telemetry/page/actions/__init__.py">telemetry/page/actions/__init__.py</a></font></td></tr></table> <p></p> <p> <table width="100%" cellspacing=0 cellpadding=2 border=0 summary="section"> diff --git a/tools/telemetry/docs/telemetry.page.actions.js_collect_garbage.html b/tools/telemetry/docs/telemetry.page.actions.js_collect_garbage.html index 774a784..fee2db5 100644 --- a/tools/telemetry/docs/telemetry.page.actions.js_collect_garbage.html +++ b/tools/telemetry/docs/telemetry.page.actions.js_collect_garbage.html @@ -8,7 +8,7 @@ <td valign=bottom> <br> <font color="#ffffff" face="helvetica, arial"> <br><big><big><strong><a href="telemetry.html"><font color="#ffffff">telemetry</font></a>.<a href="telemetry.page.html"><font color="#ffffff">page</font></a>.<a href="telemetry.page.actions.html"><font color="#ffffff">actions</font></a>.js_collect_garbage</strong></big></big></font></td ><td align=right valign=bottom -><font color="#ffffff" face="helvetica, arial"><a href=".">index</a><br><a href="file:/Users/nduca/Local/chrome/src/tools/telemetry/telemetry/page/actions/js_collect_garbage.py">/Users/nduca/Local/chrome/src/tools/telemetry/telemetry/page/actions/js_collect_garbage.py</a></font></td></tr></table> +><font color="#ffffff" face="helvetica, arial"><a href=".">index</a><br><a href="../telemetry/page/actions/js_collect_garbage.py">telemetry/page/actions/js_collect_garbage.py</a></font></td></tr></table> <p><tt># Copyright (c) 2013 The Chromium Authors. All rights reserved.<br> # Use of this source code is governed by a BSD-style license that can be<br> # found in the LICENSE file.</tt></p> diff --git a/tools/telemetry/docs/telemetry.page.actions.page_action.html b/tools/telemetry/docs/telemetry.page.actions.page_action.html index 4ca1b52..6e22906 100644 --- a/tools/telemetry/docs/telemetry.page.actions.page_action.html +++ b/tools/telemetry/docs/telemetry.page.actions.page_action.html @@ -8,7 +8,7 @@ <td valign=bottom> <br> <font color="#ffffff" face="helvetica, arial"> <br><big><big><strong><a href="telemetry.html"><font color="#ffffff">telemetry</font></a>.<a href="telemetry.page.html"><font color="#ffffff">page</font></a>.<a href="telemetry.page.actions.html"><font color="#ffffff">actions</font></a>.page_action</strong></big></big></font></td ><td align=right valign=bottom -><font color="#ffffff" face="helvetica, arial"><a href=".">index</a><br><a href="file:/Users/nduca/Local/chrome/src/tools/telemetry/telemetry/page/actions/page_action.py">/Users/nduca/Local/chrome/src/tools/telemetry/telemetry/page/actions/page_action.py</a></font></td></tr></table> +><font color="#ffffff" face="helvetica, arial"><a href=".">index</a><br><a href="../telemetry/page/actions/page_action.py">telemetry/page/actions/page_action.py</a></font></td></tr></table> <p><tt># Copyright (c) 2012 The Chromium Authors. All rights reserved.<br> # Use of this source code is governed by a BSD-style license that can be<br> # found in the LICENSE file.</tt></p> diff --git a/tools/telemetry/docs/telemetry.page.actions.reload.html b/tools/telemetry/docs/telemetry.page.actions.reload.html index 64ee4fd..31eceae 100644 --- a/tools/telemetry/docs/telemetry.page.actions.reload.html +++ b/tools/telemetry/docs/telemetry.page.actions.reload.html @@ -8,7 +8,7 @@ <td valign=bottom> <br> <font color="#ffffff" face="helvetica, arial"> <br><big><big><strong><a href="telemetry.html"><font color="#ffffff">telemetry</font></a>.<a href="telemetry.page.html"><font color="#ffffff">page</font></a>.<a href="telemetry.page.actions.html"><font color="#ffffff">actions</font></a>.reload</strong></big></big></font></td ><td align=right valign=bottom -><font color="#ffffff" face="helvetica, arial"><a href=".">index</a><br><a href="file:/Users/nduca/Local/chrome/src/tools/telemetry/telemetry/page/actions/reload.py">/Users/nduca/Local/chrome/src/tools/telemetry/telemetry/page/actions/reload.py</a></font></td></tr></table> +><font color="#ffffff" face="helvetica, arial"><a href=".">index</a><br><a href="../telemetry/page/actions/reload.py">telemetry/page/actions/reload.py</a></font></td></tr></table> <p><tt># Copyright (c) 2013 The Chromium Authors. All rights reserved.<br> # Use of this source code is governed by a BSD-style license that can be<br> # found in the LICENSE file.</tt></p> diff --git a/tools/telemetry/docs/telemetry.page.actions.scroll.html b/tools/telemetry/docs/telemetry.page.actions.scroll.html index 6f24a5a..eca9644 100644 --- a/tools/telemetry/docs/telemetry.page.actions.scroll.html +++ b/tools/telemetry/docs/telemetry.page.actions.scroll.html @@ -8,7 +8,7 @@ <td valign=bottom> <br> <font color="#ffffff" face="helvetica, arial"> <br><big><big><strong><a href="telemetry.html"><font color="#ffffff">telemetry</font></a>.<a href="telemetry.page.html"><font color="#ffffff">page</font></a>.<a href="telemetry.page.actions.html"><font color="#ffffff">actions</font></a>.scroll</strong></big></big></font></td ><td align=right valign=bottom -><font color="#ffffff" face="helvetica, arial"><a href=".">index</a><br><a href="file:/Users/nduca/Local/chrome/src/tools/telemetry/telemetry/page/actions/scroll.py">/Users/nduca/Local/chrome/src/tools/telemetry/telemetry/page/actions/scroll.py</a></font></td></tr></table> +><font color="#ffffff" face="helvetica, arial"><a href=".">index</a><br><a href="../telemetry/page/actions/scroll.py">telemetry/page/actions/scroll.py</a></font></td></tr></table> <p><tt># Copyright (c) 2012 The Chromium Authors. All rights reserved.<br> # Use of this source code is governed by a BSD-style license that can be<br> # found in the LICENSE file.</tt></p> @@ -55,6 +55,8 @@ Methods defined here:<br> <dl><dt><a name="ScrollAction-CanBeBound"><strong>CanBeBound</strong></a>(self)</dt></dl> +<dl><dt><a name="ScrollAction-CustomizeBrowserOptions"><strong>CustomizeBrowserOptions</strong></a>(self, options)</dt></dl> + <dl><dt><a name="ScrollAction-RunAction"><strong>RunAction</strong></a>(self, page, tab, previous_action)</dt></dl> <dl><dt><a name="ScrollAction-WillRunAction"><strong>WillRunAction</strong></a>(self, page, tab)</dt></dl> @@ -65,9 +67,6 @@ Methods defined here:<br> Methods inherited from <a href="telemetry.page.actions.page_action.html#PageAction">telemetry.page.actions.page_action.PageAction</a>:<br> <dl><dt><a name="ScrollAction-CleanUp"><strong>CleanUp</strong></a>(self, page, tab)</dt></dl> -<dl><dt><a name="ScrollAction-CustomizeBrowserOptions"><strong>CustomizeBrowserOptions</strong></a>(self, options)</dt><dd><tt>Override to add action-specific options to the BrowserOptions<br> -object.</tt></dd></dl> - <dl><dt><a name="ScrollAction-RunsPreviousAction"><strong>RunsPreviousAction</strong></a>(self)</dt><dd><tt>Some actions require some initialization to be performed before the<br> previous action. For example, wait for href change needs to record the old<br> href before the previous action changes it. Therefore, we allow actions to<br> diff --git a/tools/telemetry/docs/telemetry.page.actions.wait.html b/tools/telemetry/docs/telemetry.page.actions.wait.html index 1219cca..b58f6c7 100644 --- a/tools/telemetry/docs/telemetry.page.actions.wait.html +++ b/tools/telemetry/docs/telemetry.page.actions.wait.html @@ -8,7 +8,7 @@ <td valign=bottom> <br> <font color="#ffffff" face="helvetica, arial"> <br><big><big><strong><a href="telemetry.html"><font color="#ffffff">telemetry</font></a>.<a href="telemetry.page.html"><font color="#ffffff">page</font></a>.<a href="telemetry.page.actions.html"><font color="#ffffff">actions</font></a>.wait</strong></big></big></font></td ><td align=right valign=bottom -><font color="#ffffff" face="helvetica, arial"><a href=".">index</a><br><a href="file:/Users/nduca/Local/chrome/src/tools/telemetry/telemetry/page/actions/wait.py">/Users/nduca/Local/chrome/src/tools/telemetry/telemetry/page/actions/wait.py</a></font></td></tr></table> +><font color="#ffffff" face="helvetica, arial"><a href=".">index</a><br><a href="../telemetry/page/actions/wait.py">telemetry/page/actions/wait.py</a></font></td></tr></table> <p><tt># Copyright (c) 2012 The Chromium Authors. All rights reserved.<br> # Use of this source code is governed by a BSD-style license that can be<br> # found in the LICENSE file.</tt></p> diff --git a/tools/telemetry/docs/telemetry.page.block_page_measurement_results.html b/tools/telemetry/docs/telemetry.page.block_page_measurement_results.html index 1c5fe72..5c9c012 100644 --- a/tools/telemetry/docs/telemetry.page.block_page_measurement_results.html +++ b/tools/telemetry/docs/telemetry.page.block_page_measurement_results.html @@ -8,7 +8,7 @@ <td valign=bottom> <br> <font color="#ffffff" face="helvetica, arial"> <br><big><big><strong><a href="telemetry.html"><font color="#ffffff">telemetry</font></a>.<a href="telemetry.page.html"><font color="#ffffff">page</font></a>.block_page_measurement_results</strong></big></big></font></td ><td align=right valign=bottom -><font color="#ffffff" face="helvetica, arial"><a href=".">index</a><br><a href="file:/Users/nduca/Local/chrome/src/tools/telemetry/telemetry/page/block_page_measurement_results.py">/Users/nduca/Local/chrome/src/tools/telemetry/telemetry/page/block_page_measurement_results.py</a></font></td></tr></table> +><font color="#ffffff" face="helvetica, arial"><a href=".">index</a><br><a href="../telemetry/page/block_page_measurement_results.py">telemetry/page/block_page_measurement_results.py</a></font></td></tr></table> <p><tt># Copyright (c) 2012 The Chromium Authors. All rights reserved.<br> # Use of this source code is governed by a BSD-style license that can be<br> # found in the LICENSE file.</tt></p> diff --git a/tools/telemetry/docs/telemetry.page.buildbot_page_measurement_results.html b/tools/telemetry/docs/telemetry.page.buildbot_page_measurement_results.html index f112805..fd87951 100644 --- a/tools/telemetry/docs/telemetry.page.buildbot_page_measurement_results.html +++ b/tools/telemetry/docs/telemetry.page.buildbot_page_measurement_results.html @@ -8,7 +8,7 @@ <td valign=bottom> <br> <font color="#ffffff" face="helvetica, arial"> <br><big><big><strong><a href="telemetry.html"><font color="#ffffff">telemetry</font></a>.<a href="telemetry.page.html"><font color="#ffffff">page</font></a>.buildbot_page_measurement_results</strong></big></big></font></td ><td align=right valign=bottom -><font color="#ffffff" face="helvetica, arial"><a href=".">index</a><br><a href="file:/Users/nduca/Local/chrome/src/tools/telemetry/telemetry/page/buildbot_page_measurement_results.py">/Users/nduca/Local/chrome/src/tools/telemetry/telemetry/page/buildbot_page_measurement_results.py</a></font></td></tr></table> +><font color="#ffffff" face="helvetica, arial"><a href=".">index</a><br><a href="../telemetry/page/buildbot_page_measurement_results.py">telemetry/page/buildbot_page_measurement_results.py</a></font></td></tr></table> <p><tt># Copyright (c) 2013 The Chromium Authors. All rights reserved.<br> # Use of this source code is governed by a BSD-style license that can be<br> # found in the LICENSE file.</tt></p> diff --git a/tools/telemetry/docs/telemetry.page.csv_page_measurement_results.html b/tools/telemetry/docs/telemetry.page.csv_page_measurement_results.html index 8036083..6e4d270 100644 --- a/tools/telemetry/docs/telemetry.page.csv_page_measurement_results.html +++ b/tools/telemetry/docs/telemetry.page.csv_page_measurement_results.html @@ -8,7 +8,7 @@ <td valign=bottom> <br> <font color="#ffffff" face="helvetica, arial"> <br><big><big><strong><a href="telemetry.html"><font color="#ffffff">telemetry</font></a>.<a href="telemetry.page.html"><font color="#ffffff">page</font></a>.csv_page_measurement_results</strong></big></big></font></td ><td align=right valign=bottom -><font color="#ffffff" face="helvetica, arial"><a href=".">index</a><br><a href="file:/Users/nduca/Local/chrome/src/tools/telemetry/telemetry/page/csv_page_measurement_results.py">/Users/nduca/Local/chrome/src/tools/telemetry/telemetry/page/csv_page_measurement_results.py</a></font></td></tr></table> +><font color="#ffffff" face="helvetica, arial"><a href=".">index</a><br><a href="../telemetry/page/csv_page_measurement_results.py">telemetry/page/csv_page_measurement_results.py</a></font></td></tr></table> <p><tt># Copyright (c) 2012 The Chromium Authors. All rights reserved.<br> # Use of this source code is governed by a BSD-style license that can be<br> # found in the LICENSE file.</tt></p> diff --git a/tools/telemetry/docs/telemetry.page.gtest_test_results.html b/tools/telemetry/docs/telemetry.page.gtest_test_results.html index 5e4b69ec..027e10e 100644 --- a/tools/telemetry/docs/telemetry.page.gtest_test_results.html +++ b/tools/telemetry/docs/telemetry.page.gtest_test_results.html @@ -8,7 +8,7 @@ <td valign=bottom> <br> <font color="#ffffff" face="helvetica, arial"> <br><big><big><strong><a href="telemetry.html"><font color="#ffffff">telemetry</font></a>.<a href="telemetry.page.html"><font color="#ffffff">page</font></a>.gtest_test_results</strong></big></big></font></td ><td align=right valign=bottom -><font color="#ffffff" face="helvetica, arial"><a href=".">index</a><br><a href="file:/Users/nduca/Local/chrome/src/tools/telemetry/telemetry/page/gtest_test_results.py">/Users/nduca/Local/chrome/src/tools/telemetry/telemetry/page/gtest_test_results.py</a></font></td></tr></table> +><font color="#ffffff" face="helvetica, arial"><a href=".">index</a><br><a href="../telemetry/page/gtest_test_results.py">telemetry/page/gtest_test_results.py</a></font></td></tr></table> <p><tt># Copyright (c) 2013 The Chromium Authors. All rights reserved.<br> # Use of this source code is governed by a BSD-style license that can be<br> # found in the LICENSE file.</tt></p> diff --git a/tools/telemetry/docs/telemetry.page.html b/tools/telemetry/docs/telemetry.page.html index 37a13ff..7027a70 100644 --- a/tools/telemetry/docs/telemetry.page.html +++ b/tools/telemetry/docs/telemetry.page.html @@ -8,7 +8,7 @@ <td valign=bottom> <br> <font color="#ffffff" face="helvetica, arial"> <br><big><big><strong><a href="telemetry.html"><font color="#ffffff">telemetry</font></a>.page</strong></big></big></font></td ><td align=right valign=bottom -><font color="#ffffff" face="helvetica, arial"><a href=".">index</a><br><a href="file:/Users/nduca/Local/chrome/src/tools/telemetry/telemetry/page/__init__.py">/Users/nduca/Local/chrome/src/tools/telemetry/telemetry/page/__init__.py</a></font></td></tr></table> +><font color="#ffffff" face="helvetica, arial"><a href=".">index</a><br><a href="../telemetry/page/__init__.py">telemetry/page/__init__.py</a></font></td></tr></table> <p><tt># Copyright (c) 2012 The Chromium Authors. All rights reserved.<br> # Use of this source code is governed by a BSD-style license that can be<br> # found in the LICENSE file.</tt></p> diff --git a/tools/telemetry/docs/telemetry.page.page.html b/tools/telemetry/docs/telemetry.page.page.html index 4167e01..1f5381f 100644 --- a/tools/telemetry/docs/telemetry.page.page.html +++ b/tools/telemetry/docs/telemetry.page.page.html @@ -8,7 +8,7 @@ <td valign=bottom> <br> <font color="#ffffff" face="helvetica, arial"> <br><big><big><strong><a href="telemetry.html"><font color="#ffffff">telemetry</font></a>.<a href="telemetry.page.html"><font color="#ffffff">page</font></a>.page</strong></big></big></font></td ><td align=right valign=bottom -><font color="#ffffff" face="helvetica, arial"><a href=".">index</a><br><a href="file:/Users/nduca/Local/chrome/src/tools/telemetry/telemetry/page/page.py">/Users/nduca/Local/chrome/src/tools/telemetry/telemetry/page/page.py</a></font></td></tr></table> +><font color="#ffffff" face="helvetica, arial"><a href=".">index</a><br><a href="../telemetry/page/page.py">telemetry/page/page.py</a></font></td></tr></table> <p><tt># Copyright (c) 2012 The Chromium Authors. All rights reserved.<br> # Use of this source code is governed by a BSD-style license that can be<br> # found in the LICENSE file.</tt></p> diff --git a/tools/telemetry/docs/telemetry.page.page_filter.html b/tools/telemetry/docs/telemetry.page.page_filter.html index aff8de7..1c94adc 100644 --- a/tools/telemetry/docs/telemetry.page.page_filter.html +++ b/tools/telemetry/docs/telemetry.page.page_filter.html @@ -8,7 +8,7 @@ <td valign=bottom> <br> <font color="#ffffff" face="helvetica, arial"> <br><big><big><strong><a href="telemetry.html"><font color="#ffffff">telemetry</font></a>.<a href="telemetry.page.html"><font color="#ffffff">page</font></a>.page_filter</strong></big></big></font></td ><td align=right valign=bottom -><font color="#ffffff" face="helvetica, arial"><a href=".">index</a><br><a href="file:/Users/nduca/Local/chrome/src/tools/telemetry/telemetry/page/page_filter.py">/Users/nduca/Local/chrome/src/tools/telemetry/telemetry/page/page_filter.py</a></font></td></tr></table> +><font color="#ffffff" face="helvetica, arial"><a href=".">index</a><br><a href="../telemetry/page/page_filter.py">telemetry/page/page_filter.py</a></font></td></tr></table> <p><tt># Copyright (c) 2013 The Chromium Authors. All rights reserved.<br> # Use of this source code is governed by a BSD-style license that can be<br> # found in the LICENSE file.</tt></p> diff --git a/tools/telemetry/docs/telemetry.page.page_measurement.html b/tools/telemetry/docs/telemetry.page.page_measurement.html index e0ad33f..d6655cc 100644 --- a/tools/telemetry/docs/telemetry.page.page_measurement.html +++ b/tools/telemetry/docs/telemetry.page.page_measurement.html @@ -8,7 +8,7 @@ <td valign=bottom> <br> <font color="#ffffff" face="helvetica, arial"> <br><big><big><strong><a href="telemetry.html"><font color="#ffffff">telemetry</font></a>.<a href="telemetry.page.html"><font color="#ffffff">page</font></a>.page_measurement</strong></big></big></font></td ><td align=right valign=bottom -><font color="#ffffff" face="helvetica, arial"><a href=".">index</a><br><a href="file:/Users/nduca/Local/chrome/src/tools/telemetry/telemetry/page/page_measurement.py">/Users/nduca/Local/chrome/src/tools/telemetry/telemetry/page/page_measurement.py</a></font></td></tr></table> +><font color="#ffffff" face="helvetica, arial"><a href=".">index</a><br><a href="../telemetry/page/page_measurement.py">telemetry/page/page_measurement.py</a></font></td></tr></table> <p><tt># Copyright (c) 2012 The Chromium Authors. All rights reserved.<br> # Use of this source code is governed by a BSD-style license that can be<br> # found in the LICENSE file.</tt></p> diff --git a/tools/telemetry/docs/telemetry.page.page_measurement_results.html b/tools/telemetry/docs/telemetry.page.page_measurement_results.html index e23749f..4cd75f2 100644 --- a/tools/telemetry/docs/telemetry.page.page_measurement_results.html +++ b/tools/telemetry/docs/telemetry.page.page_measurement_results.html @@ -8,7 +8,7 @@ <td valign=bottom> <br> <font color="#ffffff" face="helvetica, arial"> <br><big><big><strong><a href="telemetry.html"><font color="#ffffff">telemetry</font></a>.<a href="telemetry.page.html"><font color="#ffffff">page</font></a>.page_measurement_results</strong></big></big></font></td ><td align=right valign=bottom -><font color="#ffffff" face="helvetica, arial"><a href=".">index</a><br><a href="file:/Users/nduca/Local/chrome/src/tools/telemetry/telemetry/page/page_measurement_results.py">/Users/nduca/Local/chrome/src/tools/telemetry/telemetry/page/page_measurement_results.py</a></font></td></tr></table> +><font color="#ffffff" face="helvetica, arial"><a href=".">index</a><br><a href="../telemetry/page/page_measurement_results.py">telemetry/page/page_measurement_results.py</a></font></td></tr></table> <p><tt># Copyright (c) 2012 The Chromium Authors. All rights reserved.<br> # Use of this source code is governed by a BSD-style license that can be<br> # found in the LICENSE file.</tt></p> diff --git a/tools/telemetry/docs/telemetry.page.page_measurement_runner.html b/tools/telemetry/docs/telemetry.page.page_measurement_runner.html index e0b8bb8..44059c7 100644 --- a/tools/telemetry/docs/telemetry.page.page_measurement_runner.html +++ b/tools/telemetry/docs/telemetry.page.page_measurement_runner.html @@ -8,7 +8,7 @@ <td valign=bottom> <br> <font color="#ffffff" face="helvetica, arial"> <br><big><big><strong><a href="telemetry.html"><font color="#ffffff">telemetry</font></a>.<a href="telemetry.page.html"><font color="#ffffff">page</font></a>.page_measurement_runner</strong></big></big></font></td ><td align=right valign=bottom -><font color="#ffffff" face="helvetica, arial"><a href=".">index</a><br><a href="file:/Users/nduca/Local/chrome/src/tools/telemetry/telemetry/page/page_measurement_runner.py">/Users/nduca/Local/chrome/src/tools/telemetry/telemetry/page/page_measurement_runner.py</a></font></td></tr></table> +><font color="#ffffff" face="helvetica, arial"><a href=".">index</a><br><a href="../telemetry/page/page_measurement_runner.py">telemetry/page/page_measurement_runner.py</a></font></td></tr></table> <p><tt># Copyright (c) 2012 The Chromium Authors. All rights reserved.<br> # Use of this source code is governed by a BSD-style license that can be<br> # found in the LICENSE file.</tt></p> diff --git a/tools/telemetry/docs/telemetry.page.page_measurement_unittest_base.html b/tools/telemetry/docs/telemetry.page.page_measurement_unittest_base.html index 3c3867d..6f8dbbd 100644 --- a/tools/telemetry/docs/telemetry.page.page_measurement_unittest_base.html +++ b/tools/telemetry/docs/telemetry.page.page_measurement_unittest_base.html @@ -8,7 +8,7 @@ <td valign=bottom> <br> <font color="#ffffff" face="helvetica, arial"> <br><big><big><strong><a href="telemetry.html"><font color="#ffffff">telemetry</font></a>.<a href="telemetry.page.html"><font color="#ffffff">page</font></a>.page_measurement_unittest_base</strong></big></big></font></td ><td align=right valign=bottom -><font color="#ffffff" face="helvetica, arial"><a href=".">index</a><br><a href="file:/Users/nduca/Local/chrome/src/tools/telemetry/telemetry/page/page_measurement_unittest_base.py">/Users/nduca/Local/chrome/src/tools/telemetry/telemetry/page/page_measurement_unittest_base.py</a></font></td></tr></table> +><font color="#ffffff" face="helvetica, arial"><a href=".">index</a><br><a href="../telemetry/page/page_measurement_unittest_base.py">telemetry/page/page_measurement_unittest_base.py</a></font></td></tr></table> <p><tt># Copyright (c) 2012 The Chromium Authors. All rights reserved.<br> # Use of this source code is governed by a BSD-style license that can be<br> # found in the LICENSE file.</tt></p> diff --git a/tools/telemetry/docs/telemetry.page.page_measurement_value.html b/tools/telemetry/docs/telemetry.page.page_measurement_value.html index 4765a62..c633b78 100644 --- a/tools/telemetry/docs/telemetry.page.page_measurement_value.html +++ b/tools/telemetry/docs/telemetry.page.page_measurement_value.html @@ -8,7 +8,7 @@ <td valign=bottom> <br> <font color="#ffffff" face="helvetica, arial"> <br><big><big><strong><a href="telemetry.html"><font color="#ffffff">telemetry</font></a>.<a href="telemetry.page.html"><font color="#ffffff">page</font></a>.page_measurement_value</strong></big></big></font></td ><td align=right valign=bottom -><font color="#ffffff" face="helvetica, arial"><a href=".">index</a><br><a href="file:/Users/nduca/Local/chrome/src/tools/telemetry/telemetry/page/page_measurement_value.py">/Users/nduca/Local/chrome/src/tools/telemetry/telemetry/page/page_measurement_value.py</a></font></td></tr></table> +><font color="#ffffff" face="helvetica, arial"><a href=".">index</a><br><a href="../telemetry/page/page_measurement_value.py">telemetry/page/page_measurement_value.py</a></font></td></tr></table> <p><tt># Copyright (c) 2012 The Chromium Authors. All rights reserved.<br> # Use of this source code is governed by a BSD-style license that can be<br> # found in the LICENSE file.</tt></p> diff --git a/tools/telemetry/docs/telemetry.page.page_runner.html b/tools/telemetry/docs/telemetry.page.page_runner.html index 84d5844..238edea 100644 --- a/tools/telemetry/docs/telemetry.page.page_runner.html +++ b/tools/telemetry/docs/telemetry.page.page_runner.html @@ -8,7 +8,7 @@ <td valign=bottom> <br> <font color="#ffffff" face="helvetica, arial"> <br><big><big><strong><a href="telemetry.html"><font color="#ffffff">telemetry</font></a>.<a href="telemetry.page.html"><font color="#ffffff">page</font></a>.page_runner</strong></big></big></font></td ><td align=right valign=bottom -><font color="#ffffff" face="helvetica, arial"><a href=".">index</a><br><a href="file:/Users/nduca/Local/chrome/src/tools/telemetry/telemetry/page/page_runner.py">/Users/nduca/Local/chrome/src/tools/telemetry/telemetry/page/page_runner.py</a></font></td></tr></table> +><font color="#ffffff" face="helvetica, arial"><a href=".">index</a><br><a href="../telemetry/page/page_runner.py">telemetry/page/page_runner.py</a></font></td></tr></table> <p><tt># Copyright (c) 2012 The Chromium Authors. All rights reserved.<br> # Use of this source code is governed by a BSD-style license that can be<br> # found in the LICENSE file.</tt></p> @@ -59,7 +59,7 @@ <td width="100%">Methods defined here:<br> <dl><dt><a name="PageState-CleanUpPage"><strong>CleanUpPage</strong></a>(self, page, tab)</dt></dl> -<dl><dt><a name="PageState-PreparePage"><strong>PreparePage</strong></a>(self, test, page, tab)</dt></dl> +<dl><dt><a name="PageState-PreparePage"><strong>PreparePage</strong></a>(self, page, tab, test)</dt></dl> <dl><dt><a name="PageState-__init__"><strong>__init__</strong></a>(self)</dt></dl> diff --git a/tools/telemetry/docs/telemetry.page.page_set.html b/tools/telemetry/docs/telemetry.page.page_set.html index a930673..ac31eaf 100644 --- a/tools/telemetry/docs/telemetry.page.page_set.html +++ b/tools/telemetry/docs/telemetry.page.page_set.html @@ -8,7 +8,7 @@ <td valign=bottom> <br> <font color="#ffffff" face="helvetica, arial"> <br><big><big><strong><a href="telemetry.html"><font color="#ffffff">telemetry</font></a>.<a href="telemetry.page.html"><font color="#ffffff">page</font></a>.page_set</strong></big></big></font></td ><td align=right valign=bottom -><font color="#ffffff" face="helvetica, arial"><a href=".">index</a><br><a href="file:/Users/nduca/Local/chrome/src/tools/telemetry/telemetry/page/page_set.py">/Users/nduca/Local/chrome/src/tools/telemetry/telemetry/page/page_set.py</a></font></td></tr></table> +><font color="#ffffff" face="helvetica, arial"><a href=".">index</a><br><a href="../telemetry/page/page_set.py">telemetry/page/page_set.py</a></font></td></tr></table> <p><tt># Copyright (c) 2012 The Chromium Authors. All rights reserved.<br> # Use of this source code is governed by a BSD-style license that can be<br> # found in the LICENSE file.</tt></p> diff --git a/tools/telemetry/docs/telemetry.page.page_set_archive_info.html b/tools/telemetry/docs/telemetry.page.page_set_archive_info.html index 873400b..f338511 100644 --- a/tools/telemetry/docs/telemetry.page.page_set_archive_info.html +++ b/tools/telemetry/docs/telemetry.page.page_set_archive_info.html @@ -8,7 +8,7 @@ <td valign=bottom> <br> <font color="#ffffff" face="helvetica, arial"> <br><big><big><strong><a href="telemetry.html"><font color="#ffffff">telemetry</font></a>.<a href="telemetry.page.html"><font color="#ffffff">page</font></a>.page_set_archive_info</strong></big></big></font></td ><td align=right valign=bottom -><font color="#ffffff" face="helvetica, arial"><a href=".">index</a><br><a href="file:/Users/nduca/Local/chrome/src/tools/telemetry/telemetry/page/page_set_archive_info.py">/Users/nduca/Local/chrome/src/tools/telemetry/telemetry/page/page_set_archive_info.py</a></font></td></tr></table> +><font color="#ffffff" face="helvetica, arial"><a href=".">index</a><br><a href="../telemetry/page/page_set_archive_info.py">telemetry/page/page_set_archive_info.py</a></font></td></tr></table> <p><tt># Copyright (c) 2013 The Chromium Authors. All rights reserved.<br> # Use of this source code is governed by a BSD-style license that can be<br> # found in the LICENSE file.</tt></p> diff --git a/tools/telemetry/docs/telemetry.page.page_test.html b/tools/telemetry/docs/telemetry.page.page_test.html index 5d78d3e..8f61644 100644 --- a/tools/telemetry/docs/telemetry.page.page_test.html +++ b/tools/telemetry/docs/telemetry.page.page_test.html @@ -8,7 +8,7 @@ <td valign=bottom> <br> <font color="#ffffff" face="helvetica, arial"> <br><big><big><strong><a href="telemetry.html"><font color="#ffffff">telemetry</font></a>.<a href="telemetry.page.html"><font color="#ffffff">page</font></a>.page_test</strong></big></big></font></td ><td align=right valign=bottom -><font color="#ffffff" face="helvetica, arial"><a href=".">index</a><br><a href="file:/Users/nduca/Local/chrome/src/tools/telemetry/telemetry/page/page_test.py">/Users/nduca/Local/chrome/src/tools/telemetry/telemetry/page/page_test.py</a></font></td></tr></table> +><font color="#ffffff" face="helvetica, arial"><a href=".">index</a><br><a href="../telemetry/page/page_test.py">telemetry/page/page_test.py</a></font></td></tr></table> <p><tt># Copyright (c) 2012 The Chromium Authors. All rights reserved.<br> # Use of this source code is governed by a BSD-style license that can be<br> # found in the LICENSE file.</tt></p> diff --git a/tools/telemetry/docs/telemetry.page.page_test_results.html b/tools/telemetry/docs/telemetry.page.page_test_results.html index cd7849e..1ffb1b9 100644 --- a/tools/telemetry/docs/telemetry.page.page_test_results.html +++ b/tools/telemetry/docs/telemetry.page.page_test_results.html @@ -8,7 +8,7 @@ <td valign=bottom> <br> <font color="#ffffff" face="helvetica, arial"> <br><big><big><strong><a href="telemetry.html"><font color="#ffffff">telemetry</font></a>.<a href="telemetry.page.html"><font color="#ffffff">page</font></a>.page_test_results</strong></big></big></font></td ><td align=right valign=bottom -><font color="#ffffff" face="helvetica, arial"><a href=".">index</a><br><a href="file:/Users/nduca/Local/chrome/src/tools/telemetry/telemetry/page/page_test_results.py">/Users/nduca/Local/chrome/src/tools/telemetry/telemetry/page/page_test_results.py</a></font></td></tr></table> +><font color="#ffffff" face="helvetica, arial"><a href=".">index</a><br><a href="../telemetry/page/page_test_results.py">telemetry/page/page_test_results.py</a></font></td></tr></table> <p><tt># Copyright (c) 2013 The Chromium Authors. All rights reserved.<br> # Use of this source code is governed by a BSD-style license that can be<br> # found in the LICENSE file.</tt></p> diff --git a/tools/telemetry/docs/telemetry.page.page_test_runner.html b/tools/telemetry/docs/telemetry.page.page_test_runner.html index bf6d768..c3fe499 100644 --- a/tools/telemetry/docs/telemetry.page.page_test_runner.html +++ b/tools/telemetry/docs/telemetry.page.page_test_runner.html @@ -8,7 +8,7 @@ <td valign=bottom> <br> <font color="#ffffff" face="helvetica, arial"> <br><big><big><strong><a href="telemetry.html"><font color="#ffffff">telemetry</font></a>.<a href="telemetry.page.html"><font color="#ffffff">page</font></a>.page_test_runner</strong></big></big></font></td ><td align=right valign=bottom -><font color="#ffffff" face="helvetica, arial"><a href=".">index</a><br><a href="file:/Users/nduca/Local/chrome/src/tools/telemetry/telemetry/page/page_test_runner.py">/Users/nduca/Local/chrome/src/tools/telemetry/telemetry/page/page_test_runner.py</a></font></td></tr></table> +><font color="#ffffff" face="helvetica, arial"><a href=".">index</a><br><a href="../telemetry/page/page_test_runner.py">telemetry/page/page_test_runner.py</a></font></td></tr></table> <p><tt># Copyright (c) 2012 The Chromium Authors. All rights reserved.<br> # Use of this source code is governed by a BSD-style license that can be<br> # found in the LICENSE file.</tt></p> diff --git a/tools/telemetry/docs/telemetry.page.perf_tests_helper.html b/tools/telemetry/docs/telemetry.page.perf_tests_helper.html index 0017ea5..8b2466d 100644 --- a/tools/telemetry/docs/telemetry.page.perf_tests_helper.html +++ b/tools/telemetry/docs/telemetry.page.perf_tests_helper.html @@ -8,7 +8,7 @@ <td valign=bottom> <br> <font color="#ffffff" face="helvetica, arial"> <br><big><big><strong><a href="telemetry.html"><font color="#ffffff">telemetry</font></a>.<a href="telemetry.page.html"><font color="#ffffff">page</font></a>.perf_tests_helper</strong></big></big></font></td ><td align=right valign=bottom -><font color="#ffffff" face="helvetica, arial"><a href=".">index</a><br><a href="file:/Users/nduca/Local/chrome/src/tools/telemetry/telemetry/page/perf_tests_helper.py">/Users/nduca/Local/chrome/src/tools/telemetry/telemetry/page/perf_tests_helper.py</a></font></td></tr></table> +><font color="#ffffff" face="helvetica, arial"><a href=".">index</a><br><a href="../telemetry/page/perf_tests_helper.py">telemetry/page/perf_tests_helper.py</a></font></td></tr></table> <p><tt># Copyright (c) 2012 The Chromium Authors. All rights reserved.<br> # Use of this source code is governed by a BSD-style license that can be<br> # found in the LICENSE file.</tt></p> diff --git a/tools/telemetry/docs/telemetry.page.record_wpr.html b/tools/telemetry/docs/telemetry.page.record_wpr.html index 0893900..b3f0b66 100644 --- a/tools/telemetry/docs/telemetry.page.record_wpr.html +++ b/tools/telemetry/docs/telemetry.page.record_wpr.html @@ -8,7 +8,7 @@ <td valign=bottom> <br> <font color="#ffffff" face="helvetica, arial"> <br><big><big><strong><a href="telemetry.html"><font color="#ffffff">telemetry</font></a>.<a href="telemetry.page.html"><font color="#ffffff">page</font></a>.record_wpr</strong></big></big></font></td ><td align=right valign=bottom -><font color="#ffffff" face="helvetica, arial"><a href=".">index</a><br><a href="file:/Users/nduca/Local/chrome/src/tools/telemetry/telemetry/page/record_wpr.py">/Users/nduca/Local/chrome/src/tools/telemetry/telemetry/page/record_wpr.py</a></font></td></tr></table> +><font color="#ffffff" face="helvetica, arial"><a href=".">index</a><br><a href="../telemetry/page/record_wpr.py">telemetry/page/record_wpr.py</a></font></td></tr></table> <p><tt># Copyright (c) 2012 The Chromium Authors. All rights reserved.<br> # Use of this source code is governed by a BSD-style license that can be<br> # found in the LICENSE file.</tt></p> @@ -19,19 +19,17 @@ <font color="#ffffff" face="helvetica, arial"><big><strong>Modules</strong></big></font></td></tr> <tr><td bgcolor="#aa55cc"><tt> </tt></td><td> </td> -<td width="100%"><table width="100%" summary="list"><tr><td width="25%" valign=top><a href="telemetry.core.browser_finder.html">telemetry.core.browser_finder</a><br> -<a href="telemetry.core.browser_options.html">telemetry.core.browser_options</a><br> +<td width="100%"><table width="100%" summary="list"><tr><td width="25%" valign=top><a href="telemetry.core.browser_options.html">telemetry.core.browser_options</a><br> <a href="telemetry.core.discover.html">telemetry.core.discover</a><br> <a href="logging.html">logging</a><br> </td><td width="25%" valign=top><a href="os.html">os</a><br> <a href="telemetry.page.page_measurement.html">telemetry.page.page_measurement</a><br> <a href="telemetry.page.page_runner.html">telemetry.page.page_runner</a><br> -<a href="telemetry.page.page_set.html">telemetry.page.page_set</a><br> -</td><td width="25%" valign=top><a href="telemetry.page.page_test.html">telemetry.page.page_test</a><br> -<a href="telemetry.page.page_test_results.html">telemetry.page.page_test_results</a><br> +</td><td width="25%" valign=top><a href="telemetry.page.page_set.html">telemetry.page.page_set</a><br> +<a href="telemetry.page.page_test.html">telemetry.page.page_test</a><br> <a href="sys.html">sys</a><br> -<a href="tempfile.html">tempfile</a><br> -</td><td width="25%" valign=top><a href="time.html">time</a><br> +</td><td width="25%" valign=top><a href="tempfile.html">tempfile</a><br> +<a href="time.html">time</a><br> <a href="telemetry.core.wpr_modes.html">telemetry.core.wpr_modes</a><br> </td></tr></table></td></tr></table><p> <table width="100%" cellspacing=0 cellpadding=2 border=0 summary="section"> diff --git a/tools/telemetry/docs/telemetry.unittest.gtest_testrunner.html b/tools/telemetry/docs/telemetry.unittest.gtest_testrunner.html index 9108b9a..d257dc6 100644 --- a/tools/telemetry/docs/telemetry.unittest.gtest_testrunner.html +++ b/tools/telemetry/docs/telemetry.unittest.gtest_testrunner.html @@ -8,7 +8,7 @@ <td valign=bottom> <br> <font color="#ffffff" face="helvetica, arial"> <br><big><big><strong><a href="telemetry.html"><font color="#ffffff">telemetry</font></a>.<a href="telemetry.unittest.html"><font color="#ffffff">unittest</font></a>.gtest_testrunner</strong></big></big></font></td ><td align=right valign=bottom -><font color="#ffffff" face="helvetica, arial"><a href=".">index</a><br><a href="file:/Users/nduca/Local/chrome/src/tools/telemetry/telemetry/unittest/gtest_testrunner.py">/Users/nduca/Local/chrome/src/tools/telemetry/telemetry/unittest/gtest_testrunner.py</a></font></td></tr></table> +><font color="#ffffff" face="helvetica, arial"><a href=".">index</a><br><a href="../telemetry/unittest/gtest_testrunner.py">telemetry/unittest/gtest_testrunner.py</a></font></td></tr></table> <p><tt>Implements a unittest TestRunner with GTest output.<br> <br> This output is ported from gtest.cc's PrettyUnitTestResultPrinter, but<br> diff --git a/tools/telemetry/docs/telemetry.unittest.html b/tools/telemetry/docs/telemetry.unittest.html index 803475f..9f77fb7 100644 --- a/tools/telemetry/docs/telemetry.unittest.html +++ b/tools/telemetry/docs/telemetry.unittest.html @@ -8,7 +8,7 @@ <td valign=bottom> <br> <font color="#ffffff" face="helvetica, arial"> <br><big><big><strong><a href="telemetry.html"><font color="#ffffff">telemetry</font></a>.unittest</strong></big></big></font></td ><td align=right valign=bottom -><font color="#ffffff" face="helvetica, arial"><a href=".">index</a><br><a href="file:/Users/nduca/Local/chrome/src/tools/telemetry/telemetry/unittest/__init__.py">/Users/nduca/Local/chrome/src/tools/telemetry/telemetry/unittest/__init__.py</a></font></td></tr></table> +><font color="#ffffff" face="helvetica, arial"><a href=".">index</a><br><a href="../telemetry/unittest/__init__.py">telemetry/unittest/__init__.py</a></font></td></tr></table> <p><tt># Copyright (c) 2012 The Chromium Authors. All rights reserved.<br> # Use of this source code is governed by a BSD-style license that can be<br> # found in the LICENSE file.</tt></p> diff --git a/tools/telemetry/docs/telemetry.unittest.options_for_unittests.html b/tools/telemetry/docs/telemetry.unittest.options_for_unittests.html index 87c5a76..8a6432f 100644 --- a/tools/telemetry/docs/telemetry.unittest.options_for_unittests.html +++ b/tools/telemetry/docs/telemetry.unittest.options_for_unittests.html @@ -8,7 +8,7 @@ <td valign=bottom> <br> <font color="#ffffff" face="helvetica, arial"> <br><big><big><strong><a href="telemetry.html"><font color="#ffffff">telemetry</font></a>.<a href="telemetry.unittest.html"><font color="#ffffff">unittest</font></a>.options_for_unittests</strong></big></big></font></td ><td align=right valign=bottom -><font color="#ffffff" face="helvetica, arial"><a href=".">index</a><br><a href="file:/Users/nduca/Local/chrome/src/tools/telemetry/telemetry/unittest/options_for_unittests.py">/Users/nduca/Local/chrome/src/tools/telemetry/telemetry/unittest/options_for_unittests.py</a></font></td></tr></table> +><font color="#ffffff" face="helvetica, arial"><a href=".">index</a><br><a href="../telemetry/unittest/options_for_unittests.py">telemetry/unittest/options_for_unittests.py</a></font></td></tr></table> <p><tt>This module provides the global variable options_for_unittests.<br> <br> This is set to a BrowserOptions object by the test harness, or None<br> diff --git a/tools/telemetry/docs/telemetry.unittest.run_tests.html b/tools/telemetry/docs/telemetry.unittest.run_tests.html index 4b3e0614..3cedf27 100644 --- a/tools/telemetry/docs/telemetry.unittest.run_tests.html +++ b/tools/telemetry/docs/telemetry.unittest.run_tests.html @@ -8,7 +8,7 @@ <td valign=bottom> <br> <font color="#ffffff" face="helvetica, arial"> <br><big><big><strong><a href="telemetry.html"><font color="#ffffff">telemetry</font></a>.<a href="telemetry.unittest.html"><font color="#ffffff">unittest</font></a>.run_tests</strong></big></big></font></td ><td align=right valign=bottom -><font color="#ffffff" face="helvetica, arial"><a href=".">index</a><br><a href="file:/Users/nduca/Local/chrome/src/tools/telemetry/telemetry/unittest/run_tests.py">/Users/nduca/Local/chrome/src/tools/telemetry/telemetry/unittest/run_tests.py</a></font></td></tr></table> +><font color="#ffffff" face="helvetica, arial"><a href=".">index</a><br><a href="../telemetry/unittest/run_tests.py">telemetry/unittest/run_tests.py</a></font></td></tr></table> <p><tt># Copyright (c) 2012 The Chromium Authors. All rights reserved.<br> # Use of this source code is governed by a BSD-style license that can be<br> # found in the LICENSE file.</tt></p> diff --git a/tools/telemetry/docs/telemetry.unittest.simple_mock.html b/tools/telemetry/docs/telemetry.unittest.simple_mock.html index 662e668..1081acc 100644 --- a/tools/telemetry/docs/telemetry.unittest.simple_mock.html +++ b/tools/telemetry/docs/telemetry.unittest.simple_mock.html @@ -8,7 +8,7 @@ <td valign=bottom> <br> <font color="#ffffff" face="helvetica, arial"> <br><big><big><strong><a href="telemetry.html"><font color="#ffffff">telemetry</font></a>.<a href="telemetry.unittest.html"><font color="#ffffff">unittest</font></a>.simple_mock</strong></big></big></font></td ><td align=right valign=bottom -><font color="#ffffff" face="helvetica, arial"><a href=".">index</a><br><a href="file:/Users/nduca/Local/chrome/src/tools/telemetry/telemetry/unittest/simple_mock.py">/Users/nduca/Local/chrome/src/tools/telemetry/telemetry/unittest/simple_mock.py</a></font></td></tr></table> +><font color="#ffffff" face="helvetica, arial"><a href=".">index</a><br><a href="../telemetry/unittest/simple_mock.py">telemetry/unittest/simple_mock.py</a></font></td></tr></table> <p><tt>A very very simple mock <a href="__builtin__.html#object">object</a> harness.</tt></p> <p> <table width="100%" cellspacing=0 cellpadding=2 border=0 summary="section"> diff --git a/tools/telemetry/docs/telemetry.unittest.system_stub.html b/tools/telemetry/docs/telemetry.unittest.system_stub.html index cd380c7..c78cb03 100644 --- a/tools/telemetry/docs/telemetry.unittest.system_stub.html +++ b/tools/telemetry/docs/telemetry.unittest.system_stub.html @@ -8,7 +8,7 @@ <td valign=bottom> <br> <font color="#ffffff" face="helvetica, arial"> <br><big><big><strong><a href="telemetry.html"><font color="#ffffff">telemetry</font></a>.<a href="telemetry.unittest.html"><font color="#ffffff">unittest</font></a>.system_stub</strong></big></big></font></td ><td align=right valign=bottom -><font color="#ffffff" face="helvetica, arial"><a href=".">index</a><br><a href="file:/Users/nduca/Local/chrome/src/tools/telemetry/telemetry/unittest/system_stub.py">/Users/nduca/Local/chrome/src/tools/telemetry/telemetry/unittest/system_stub.py</a></font></td></tr></table> +><font color="#ffffff" face="helvetica, arial"><a href=".">index</a><br><a href="../telemetry/unittest/system_stub.py">telemetry/unittest/system_stub.py</a></font></td></tr></table> <p><tt>Provides stubs for os, sys and subprocess for testing<br> <br> This test allows one to test code that itself uses os, sys, and subprocess.</tt></p> diff --git a/tools/telemetry/docs/telemetry.unittest.tab_test_case.html b/tools/telemetry/docs/telemetry.unittest.tab_test_case.html index 8709440..304dedd 100644 --- a/tools/telemetry/docs/telemetry.unittest.tab_test_case.html +++ b/tools/telemetry/docs/telemetry.unittest.tab_test_case.html @@ -8,7 +8,7 @@ <td valign=bottom> <br> <font color="#ffffff" face="helvetica, arial"> <br><big><big><strong><a href="telemetry.html"><font color="#ffffff">telemetry</font></a>.<a href="telemetry.unittest.html"><font color="#ffffff">unittest</font></a>.tab_test_case</strong></big></big></font></td ><td align=right valign=bottom -><font color="#ffffff" face="helvetica, arial"><a href=".">index</a><br><a href="file:/Users/nduca/Local/chrome/src/tools/telemetry/telemetry/unittest/tab_test_case.py">/Users/nduca/Local/chrome/src/tools/telemetry/telemetry/unittest/tab_test_case.py</a></font></td></tr></table> +><font color="#ffffff" face="helvetica, arial"><a href=".">index</a><br><a href="../telemetry/unittest/tab_test_case.py">telemetry/unittest/tab_test_case.py</a></font></td></tr></table> <p><tt># Copyright (c) 2012 The Chromium Authors. All rights reserved.<br> # Use of this source code is governed by a BSD-style license that can be<br> # found in the LICENSE file.</tt></p> diff --git a/tools/telemetry/telemetry/core/chrome/png_bitmap.py b/tools/telemetry/telemetry/core/chrome/png_bitmap.py index 8c1298a..fc8d89e 100644 --- a/tools/telemetry/telemetry/core/chrome/png_bitmap.py +++ b/tools/telemetry/telemetry/core/chrome/png_bitmap.py @@ -5,11 +5,13 @@ import sys import os import base64 -PNG_PATH = os.path.join(os.path.dirname(__file__), - '..', '..', '..', 'third_party', 'png') -if PNG_PATH not in sys.path: - sys.path.append(PNG_PATH) +def _EnsurePngIsInPath(): + png_path = os.path.join(os.path.dirname(__file__), + '..', '..', '..', 'third_party', 'png') + if png_path not in sys.path: + sys.path.append(png_path) +_EnsurePngIsInPath() import png # pylint: disable=F0401 class PngColor(object): |