summaryrefslogtreecommitdiffstats
path: root/tools
Commit message (Collapse)AuthorAgeFilesLines
* Removed obsolete suppression.joaodasilva@chromium.org2013-03-041-7/+0
| | | | | | | | | | | These leaks were plugged by http://crrev.com/185857 and http://crrev.com/185858. TBR=dhollowa@chromium.org BUG=179231 Review URL: https://codereview.chromium.org/12395005 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@185859 0039d316-1c4b-4281-b951-d872f2087c98
* Fixed leak in DeviceSettingsTestBase.joaodasilva@chromium.org2013-03-041-13/+0
| | | | | | | | | TBR=dhollowa@chromium.org BUG=179231 Review URL: https://codereview.chromium.org/12377074 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@185858 0039d316-1c4b-4281-b951-d872f2087c98
* Fixed leak in UserManagerTest.joaodasilva@chromium.org2013-03-041-11/+7
| | | | | | | | | TBR=dhollowa@chromium.org BUG=179231,102327 Review URL: https://codereview.chromium.org/12390053 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@185857 0039d316-1c4b-4281-b951-d872f2087c98
* WeakPtrTest::NonOwnerThreadCanCopyAndAssignWeakPtrBase reports leak on ↵dhollowa@chromium.org2013-03-041-2/+2
| | | | | | | | | | | | | | Valgrind and Heapcheck Suppresses leak reports of WeakPtrTest::NonOwnerThreadCanCopyAndAssignWeakPtrBase on Valgrind and Heapcheck BUG=179758 TEST=WeakPtrTest::NonOwnerThreadCanCopyAndAssignWeakPtrBase etc. TBR=akalin@chromium.org Review URL: https://codereview.chromium.org/12381075 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@185840 0039d316-1c4b-4281-b951-d872f2087c98
* WeakPtrTest::NonOwnerThreadCanCopyAndAssignWeakPtrBase reports leak on ↵dhollowa@chromium.org2013-03-042-0/+24
| | | | | | | | | | | | | | Valgrind and Heapcheck Suppresses leak reports of WeakPtrTest::NonOwnerThreadCanCopyAndAssignWeakPtrBase on Valgrind and Heapcheck BUG=179758 TEST=WeakPtrTest::NonOwnerThreadCanCopyAndAssignWeakPtrBase etc. TBR=akalin@chromium.org Review URL: https://codereview.chromium.org/12389071 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@185834 0039d316-1c4b-4281-b951-d872f2087c98
* Implement chrome.downloads.onDeterminingFilename() to allow extensions to ↵benjhayden@chromium.org2013-03-031-0/+10
| | | | | | | | | | | | | | | | | | | | | | | | participate in the download filename determination process. Docs staged: http://basho.cam.corp.google.com:8000/extensions/downloads.html#event-onDeterminingFilename Example: chrome.downloads.onDeterminingFilename.addListener(function(item, suggest) { suggest({filename: item.filename, overwrite: true}); }); chrome.downloads.onDeterminingFilename.addListener(function(item, suggest) { window.setTimeout(function() { suggest({filename: item.mime.split('/')[0] + '/' + item.filename, overwrite: false}); }, 1); return true; // handling asynchronously }); BUG=12133 BUG=68108 Review URL: https://chromiumcodereview.appspot.com/11574006 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@185811 0039d316-1c4b-4281-b951-d872f2087c98
* Telemetry: Fix exit status of run_tests.sbasi@google.com2013-03-022-2/+2
| | | | | | | | | | | | | | It appears that the exit status of run_tests always 255 because it is doing a max between the number of errors and 255. This should be a min. BUG=None TEST=locally ran. Review URL: https://chromiumcodereview.appspot.com/12386068 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@185677 0039d316-1c4b-4281-b951-d872f2087c98
* [telemetry] Remove android_platform.pydtu@chromium.org2013-03-021-28/+0
| | | | | | | | | | | It's obsoleted by android_platform_backend.py in http://crrev.com/184153 BUG=None. TEST=None. Review URL: https://codereview.chromium.org/12387031 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@185635 0039d316-1c4b-4281-b951-d872f2087c98
* Update perf expectations to include improvements created by crrev.com/185548agable@chromium.org2013-03-021-15/+17
| | | | | | | | | http://chromium-perf.appspot.com/?tab=linux-release&graph=times&trace=t&trace=t_ref&rev=185603&history=50&master=ChromiumPerf&testSuite=page_cycler_intl1&details=true TBR=cmp@chromium.org Review URL: https://codereview.chromium.org/12386066 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@185631 0039d316-1c4b-4281-b951-d872f2087c98
* ExtensionServiceTest.* timeouts on ChromiumOS Valgrind botsdhollowa@chromium.org2013-03-021-4/+1
| | | | | | | | | | | | | | | Disables the rest of ExtensionServiceTest.* on CrOS Valgrind Prior targetted disablements did not do it. Seeing more of these pop up. Details in bug. BUG=179427 TEST=ExtensionServiceTest.* TBR=wez@chromium.org Review URL: https://codereview.chromium.org/12379061 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@185627 0039d316-1c4b-4281-b951-d872f2087c98
* Fixes for how extension ids are calculated, especially for component extensions.achuith@chromium.org2013-03-013-4/+24
| | | | | | | | | | | | | | * Depends on https://codereview.chromium.org/12385037/ * Add crx_id.HasPublicKey * Introduce exception ComponentExtensionMissingPublicKey. Component extensions must have a public key specified. Add a unit test to ensure this exception is raised. * If an extension has a public key, use that to calculate extension_id, if not, use the local file path. BUG=177372 TEST=run_tests --browser=cros-chrome --remote=172.22.71.22 testComponentExtension NOTRY=true Review URL: https://codereview.chromium.org/12379034 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@185617 0039d316-1c4b-4281-b951-d872f2087c98
* Fixed incorrect page value index lookup when using gtest_repeat with the ↵simonhatch@chromium.org2013-03-011-5/+10
| | | | | | | | | | | | times/t metric (ie. --gtest_repeat=N for N > 1). Refactored code to simplify and added comments as well. BUG= NOTRY=true Review URL: https://chromiumcodereview.appspot.com/12383062 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@185598 0039d316-1c4b-4281-b951-d872f2087c98
* ExtensionServiceTest.GetSyncAppDataUserSettingsOnExtensionMoved fails on ↵dhollowa@chromium.org2013-03-011-0/+7
| | | | | | | | | | | | | | | | | | | | CrOS Valgrind Disables ExtensionServiceTest.* (some) on CrOS Valgrind ExtensionPrefsDelayedInstallInfo.DelayedInstallInfo ExtensionServiceTest.ClearAppData ExtensionServiceTest.ExternalInstallGlobalError ExtensionServiceTest.GetSyncAppDataUserSettingsOnExtensionMoved ExtensionServiceTest.InstallPriorityExternalLocalFile BUG=179427, 159754 TEST=ExtensionServiceTest.* TBR=wez@chromium.org, gab@chromium.org Review URL: https://codereview.chromium.org/12388051 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@185584 0039d316-1c4b-4281-b951-d872f2087c98
* Add HasPublicKey to crx_id.achuith@chromium.org2013-03-012-25/+30
| | | | | | | | | | | | | | | | * Rename from_test_path to from_file_path. * Add HasPublicKey test to unit test * CRX_ID_DIR should use abspath, and it doesn't need to be a global. * Replace BASE_DIR and UNPACKED_TEST_DIR with unpacked_test_manifest_path * Split file_path based tests (testFromFilePath) off from testUnpackedHashAppId since they are not related. BUG=177372 TEST=manual NOTRY=true Review URL: https://codereview.chromium.org/12385037 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@185567 0039d316-1c4b-4281-b951-d872f2087c98
* BrowserCommandControllerTest.IncognitoModeOnSigninAllowedPrefChange fails on ↵dhollowa@chromium.org2013-03-011-0/+2
| | | | | | | | | | | | | | DrMemory Disables BrowserCommandControllerTest.IncognitoModeOnSigninAllowedPrefChange on DrMemory BUG=179391, 171370 TEST=DrMemory bot goes green. TBR=akuegel@chromium.org Review URL: https://codereview.chromium.org/12377050 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@185547 0039d316-1c4b-4281-b951-d872f2087c98
* WebContentsVideoCaptureDeviceTest fails on MemoryFYI botsdhollowa@chromium.org2013-03-011-0/+4
| | | | | | | | | | | | Disables WebContentsVideoCaptureDeviceTest on MemoryFYI bots. BUG=175565,158641,159234 TEST=Mac Valgrind bots go green TBR=nick@chromium.org Review URL: https://codereview.chromium.org/12380063 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@185546 0039d316-1c4b-4281-b951-d872f2087c98
* Leaks reported in BrowserPolicyConnectordhollowa@chromium.org2013-03-011-0/+24
| | | | | | | | | | | | Adds suppressions for leak in BrowserPolicyConnector BUG=179372 TEST=Memory bots go green. TBR=joaodasilva@chromium.org Review URL: https://codereview.chromium.org/12378044 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@185545 0039d316-1c4b-4281-b951-d872f2087c98
* Telemetry: Don't run against live sites unless a specific command line flag ↵marja@chromium.org2013-03-014-8/+42
| | | | | | | | | | | | | | | | | | is passed. This will prevent the test bots from running against live sites (silently), if there is something wrong in the Web Page Recording archives or the page set data. This CL also disables or fixes "unit" tests which were running against live sites. BUG=173436,179038 R=nduca NOTRY=true Review URL: https://chromiumcodereview.appspot.com/12388019 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@185529 0039d316-1c4b-4281-b951-d872f2087c98
* Revert 185489tzik@chromium.org2013-03-012-0/+30
| | | | | | | | | | | | | | > Fix leaks on DriveFileSyncServiceSyncTest > > > BUG=179222 > > Review URL: https://chromiumcodereview.appspot.com/12387034 TBR=tzik@chromium.org Review URL: https://codereview.chromium.org/12380055 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@185500 0039d316-1c4b-4281-b951-d872f2087c98
* Fix leaks on DriveFileSyncServiceSyncTesttzik@chromium.org2013-03-012-30/+0
| | | | | | | | BUG=179222 Review URL: https://chromiumcodereview.appspot.com/12387034 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@185489 0039d316-1c4b-4281-b951-d872f2087c98
* Added goma build support when run through trybots.simonhatch@chromium.org2013-03-011-2/+31
| | | | | | | | | | BUG= NOTRY=true Review URL: https://chromiumcodereview.appspot.com/12380004 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@185414 0039d316-1c4b-4281-b951-d872f2087c98
* Roll Opus to 1.0.2sergeyu@chromium.org2013-03-011-3/+0
| | | | | | | | | | | The new version has update PLC support and various other fixes. BUG=156738 TBR=cpu@chromium.org Review URL: https://codereview.chromium.org/12381024 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@185405 0039d316-1c4b-4281-b951-d872f2087c98
* Improved cros support in telemetry.achuith@chromium.org2013-03-014-25/+76
| | | | | | | | | | | | | | | | | | * Add --cros-desktop option to run cros-chrome on linux. This adds --login-manager, --login-profile=user, --stub-cros, --login-screen=login and --auth-ext-path * Add --login-screen=login to cros_browser_backend to skip network selection screen. * Sanitize other cros-chrome cmd line flags: aura-host-window-use-fullscreen no longer exists, enable-gpu-sandboxing should actually be enable-gpu-sandbox and it's already specified, allow-webui-compositing is already specified. * Move common code to navigate oobe/login to cros_util.py * cros_util.NavigateLogin also attempts to click the ok button in case we're on the user image selection screen. * cros_util.NavigateLogin now handles the startup window being an extension (as on official builds), instead of a webpage correctly. * CrOSBrowserBackend.SetBrowser is no longer necessary. * Copy local extensions to temporary directories on the remote device. BUG=170460,170461,177372 TEST=Powerwash a device. setup ssh login. run_tests --browser=cros-chrome --remote=172.22.71.22 testExtension NOTRY=true Review URL: https://codereview.chromium.org/12315120 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@185390 0039d316-1c4b-4281-b951-d872f2087c98
* Leaks reported in BrowserPolicyConnectordhollowa@chromium.org2013-03-011-0/+7
| | | | | | | | | | | | Adds suppressions for leaks reported in BrowserPolicyConnector. BUG=179231, 177843 TEST=Memory bots go green. TBR=joaodasilva@chromium.org Review URL: https://codereview.chromium.org/12380044 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@185383 0039d316-1c4b-4281-b951-d872f2087c98
* Leaks reported in DriveMetadata initializationdhollowa@chromium.org2013-03-012-0/+30
| | | | | | | | | | | | Adds suppressions for leaks reported in DriveMetadata initialization BUG=179222 TEST=Memory waterfall goes green. TBR=joaodasilva@chromium.org Review URL: https://codereview.chromium.org/12382033 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@185372 0039d316-1c4b-4281-b951-d872f2087c98
* Loosen restrictions on reading browser histograms from rendererjeremy@chromium.org2013-02-281-0/+1
| | | | | | | | | | | | Gate the ability to read histograms on the DOM automation controller flag being enabled. This allows reading browser histograms from telemetry without needing to change the Chrome code each time. The assumption is that the DOM automation controller will only be enabled in a test. BUG= Review URL: https://chromiumcodereview.appspot.com/12303005 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@185286 0039d316-1c4b-4281-b951-d872f2087c98
* revert perf expectations after libjingle roll now that a fix rolled inthakis@chromium.org2013-02-281-3/+3
| | | | | | | | | BUG=178968 TBR=perkj Review URL: https://codereview.chromium.org/12383025 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@185268 0039d316-1c4b-4281-b951-d872f2087c98
* Move Close from Tab to base class WebContents.achuith@chromium.org2013-02-282-7/+7
| | | | | | | | | BUG=170461 TEST=run_tests NOTRY=true Review URL: https://codereview.chromium.org/12319161 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@185199 0039d316-1c4b-4281-b951-d872f2087c98
* Distinguish between local_path and path in ExtensionToLoad.achuith@chromium.org2013-02-282-4/+16
| | | | | | | | | | | For cros-chrome, local_path is the location of the extension files on the device, and path is the location of the extension files on the telemetry server. BUG=177372 TEST=run_tests --browser=cros-chrome --remote=172.22.71.22 testExtension NOTRY=true Review URL: https://codereview.chromium.org/12387007 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@185198 0039d316-1c4b-4281-b951-d872f2087c98
* Rewrite WebContentsVideoCaptureDeviceTest.nick@chromium.org2013-02-282-3/+3
| | | | | | | | | | | | | | The motivation here was to support CopyFromCompositingSurfaceToVideoFrame. What's new: we use or extend TestWebContents, TestRenderViewHost, and TestRenderWidgetHostView instead of directly overriding the impls. As a result we can use the WebContentsVideoCaptureDevice's regular constructor, and eliminate all the ForTesting setup code. The main test thread doubles as the UI thread. Instead of an event signaling a condition variable, we run the message loop until the event causes posts a Quit task. BUG=175565,158641,159234 TEST=content_unittests,browser_tests TBR=wjia@chromium.org Review URL: https://chromiumcodereview.appspot.com/12258042 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@185181 0039d316-1c4b-4281-b951-d872f2087c98
* Update perf expectations after libjingle roll r185153hclam@google.com2013-02-281-1/+1
| | | | | | | | TBR=cmp BUG=178968 Review URL: https://codereview.chromium.org/12386015 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@185176 0039d316-1c4b-4281-b951-d872f2087c98
* Update perf expectations due to libjingle roll r185153hclam@google.com2013-02-281-1/+1
| | | | | | | | TBR=cmp BUG=178968 Review URL: https://codereview.chromium.org/12380011 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@185175 0039d316-1c4b-4281-b951-d872f2087c98
* Update perf expectations due to libjingle roll r185153hclam@google.com2013-02-281-1/+1
| | | | | | | | TBR=cmp BUG=178968 Review URL: https://codereview.chromium.org/12374008 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@185161 0039d316-1c4b-4281-b951-d872f2087c98
* Update perf expectations due to libjingle roll r185153hclam@google.com2013-02-281-1/+1
| | | | | | | | TBR=cmp BUG=178968 Review URL: https://codereview.chromium.org/12388010 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@185159 0039d316-1c4b-4281-b951-d872f2087c98
* Valgrind: Restore the layout tests chunk size to 1500.thestig@chromium.org2013-02-281-1/+1
| | | | | | | | | | BUG=178545 TBR=timurrrr NOTRY=true Review URL: https://chromiumcodereview.appspot.com/12383012 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@185155 0039d316-1c4b-4281-b951-d872f2087c98
* Update perf expectations due to the last libjingle rollhclam@google.com2013-02-281-2/+2
| | | | | | | | TBR=cmp@chromium.org BUG=178968,177139 Review URL: https://codereview.chromium.org/12379008 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@185148 0039d316-1c4b-4281-b951-d872f2087c98
* Fixed recursing into sub-depots and made the code a little clearer. The ↵simonhatch@chromium.org2013-02-271-4/+4
| | | | | | | | | | | | earliest/latest revision had been flipped, and as a result, we weren't getting a valid range of commits. BUG= NOTRY=true Review URL: https://chromiumcodereview.appspot.com/12330183 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@185078 0039d316-1c4b-4281-b951-d872f2087c98
* lower static initializer expectations on linux by 1 after r184541thakis@chromium.org2013-02-271-2/+2
| | | | | | | | | | BUG=94925 TBR=markus NOTRY=true Review URL: https://chromiumcodereview.appspot.com/12316159 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@184966 0039d316-1c4b-4281-b951-d872f2087c98
* Make move_source_file.py more generous in handling include guard update.blundell@chromium.org2013-02-271-5/+8
| | | | | | | | | | | | | | Two changes: (1) Don't raise an error in the case where the user had already updated the include guard before running move_source_file.py. (2) Rather than having a failure to find the include guard stop the script, print out a warning instead and let the rest of the operation of the script continue. Review URL: https://chromiumcodereview.appspot.com/12335126 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@184948 0039d316-1c4b-4281-b951-d872f2087c98
* Telemetry: Fix --no-performance-mode switchskyostil@chromium.org2013-02-271-0/+1
| | | | | | | | | | | | | The newly created --no-performance-mode switch also needs to be added to the option parser. NOTRY=true TBR=nduca@chromium.org Review URL: https://chromiumcodereview.appspot.com/12330167 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@184936 0039d316-1c4b-4281-b951-d872f2087c98
* Telemetry: only whine about missing archives for pages which are really ran.marja@chromium.org2013-02-271-5/+5
| | | | | | | | | | | | | | | This is needed for the upcoming change which makes Telemetry to just fail if archives are missing, unless a specific command line flag is passed. (It prevents running against live sites by accident.) BUG=173436 R=nduca NOTRY=true Review URL: https://chromiumcodereview.appspot.com/12334116 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@184927 0039d316-1c4b-4281-b951-d872f2087c98
* Telemetry / Android: adds option to prevent setting "performance mode".bulach@chromium.org2013-02-273-2/+16
| | | | | | | | | | | | | | | After r184153, Telemetry always set the cpu governor to max performance by default. This is done so all bots and graphs will have less noise as theoretically the cpu frequency will remain more constant. However, sometimes it's interesting to change run on whatever mode was configured manually. BUG= TEST= NOTRY=true Review URL: https://chromiumcodereview.appspot.com/12314102 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@184914 0039d316-1c4b-4281-b951-d872f2087c98
* Remove heapcheck suppression for 174177satorux@chromium.org2013-02-271-5/+0
| | | | | | | | | | | The leak was already fixed in crrev.com/181255 BUG=174177 TEST=none Review URL: https://chromiumcodereview.appspot.com/12352002 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@184896 0039d316-1c4b-4281-b951-d872f2087c98
* Fix gen_keyboard_overlay_data.py so that it can handle search key as modifier.mazda@chromium.org2013-02-271-2/+2
| | | | | | | | | BUG=None Review URL: https://chromiumcodereview.appspot.com/12334101 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@184889 0039d316-1c4b-4281-b951-d872f2087c98
* JSON compiler to prefix the function classes by their type's names.ncj674@motorola.com2013-02-271-16/+23
| | | | | | | | BUG=159265 Review URL: https://chromiumcodereview.appspot.com/12330089 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@184813 0039d316-1c4b-4281-b951-d872f2087c98
* [telemetry] Fix perf_tools/run_tests with no browser.dtu@chromium.org2013-02-271-3/+5
| | | | | | | | | | | | perf_tools counterpart to http://crrev.com/183756 TBR=nduca@chromium.org BUG=None. TEST=./run_tests --browser=none Review URL: https://codereview.chromium.org/12321127 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@184796 0039d316-1c4b-4281-b951-d872f2087c98
* Fix problem with non void return types in extension API IDL.benwells@chromium.org2013-02-262-10/+51
| | | | | | | | | | | This also changes the dart generator to use these types. BUG=144301 Review URL: https://chromiumcodereview.appspot.com/12315074 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@184762 0039d316-1c4b-4281-b951-d872f2087c98
* Added a --create_depot_and_exit parameter to the bisect tool.simonhatch@chromium.org2013-02-263-135/+217
| | | | | | | | | | BUG= NOTRY=true Review URL: https://chromiumcodereview.appspot.com/12314109 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@184757 0039d316-1c4b-4281-b951-d872f2087c98
* Add MemorySanitizer runtime to Clang tarball.eugenis@chromium.org2013-02-261-3/+3
| | | | | | | | | | | Does not require changes to update.sh, will build automatically when Clang is updated past r175737. Increases tarball size by 68Kb, ~0.3%. BUG=178409 Review URL: https://chromiumcodereview.appspot.com/12334089 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@184705 0039d316-1c4b-4281-b951-d872f2087c98
* Update expectations for xp-release-dual-core/intl2 and ↵sullivan@chromium.org2013-02-261-2/+2
| | | | | | | | | | | | | | | | xp-release-single-core/intl1 Expectations for xp-release-dual-core/intl2 don't take normal variance into account: http://build.chromium.org/f/chromium/perf/xp-release-dual-core/intl2/report.html?history=150&rev=184636 Expectations for xp-release-single-core/intl1 need to be updated from WebKit roll 143855:143884 (bug 178192): http://build.chromium.org/f/chromium/perf/xp-release-single-core/intl1/report.html?history=150&rev=-1 BUG=178192 Review URL: https://chromiumcodereview.appspot.com/12310134 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@184678 0039d316-1c4b-4281-b951-d872f2087c98