- 24 Apr, 2012 40 commits
-
-
satorux@chromium.org authored
Forgot to remove them in crrev.com/133644 BUG=chromium-os:29813 TEST=compiles Review URL: https://chromiumcodereview.appspot.com/10181013 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@133769 0039d316-1c4b-4281-b951-d872f2087c98
-
ananta@chromium.org authored
busted. Added the kTouchOptimizedUI switch to metro mode. BUG=118641 R=cpu,sky Review URL: https://chromiumcodereview.appspot.com/10211006 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@133768 0039d316-1c4b-4281-b951-d872f2087c98
-
sergeyu@chromium.org authored
This will allow using that class on the main NPAPI plugin thread in chromoting. BUG=124728 Review URL: http://codereview.chromium.org/10140010 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@133767 0039d316-1c4b-4281-b951-d872f2087c98
-
szym@chromium.org authored
BUG=124683 TEST=./net_unittests Review URL: http://codereview.chromium.org/10185007 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@133766 0039d316-1c4b-4281-b951-d872f2087c98
-
mseaborn@chromium.org authored
The functions ByteStringAsUTF8() and ByteStringFromUTF8() are no longer used. BUG=none TEST=build Review URL: https://chromiumcodereview.appspot.com/10206009 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@133765 0039d316-1c4b-4281-b951-d872f2087c98
-
jhawkins@chromium.org authored
BUG=none TEST=none TBR=csilv Review URL: https://chromiumcodereview.appspot.com/10219005 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@133764 0039d316-1c4b-4281-b951-d872f2087c98
-
jhawkins@chromium.org authored
BUG=none TEST=none TBR=dpapad Review URL: https://chromiumcodereview.appspot.com/10211009 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@133761 0039d316-1c4b-4281-b951-d872f2087c98
-
jhawkins@chromium.org authored
BUG=111244 TEST=none R=csilv Review URL: https://chromiumcodereview.appspot.com/10210003 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@133759 0039d316-1c4b-4281-b951-d872f2087c98
-
kevers@chromium.org authored
BUG=124705 TEST= Review URL: http://codereview.chromium.org/10174013 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@133758 0039d316-1c4b-4281-b951-d872f2087c98
-
alecflett@chromium.org authored
This just implements the proxy and IPC code for advance(), modeled after IDBCursor.continue(). BUG=90647 Review URL: http://codereview.chromium.org/10197001 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@133757 0039d316-1c4b-4281-b951-d872f2087c98
-
thestig@chromium.org authored
BUG=none TEST=none Review URL: http://codereview.chromium.org/10205008 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@133756 0039d316-1c4b-4281-b951-d872f2087c98
-
maruel@chromium.org authored
R=garykac@chromium.org BUG= TEST= Review URL: http://codereview.chromium.org/10191002 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@133755 0039d316-1c4b-4281-b951-d872f2087c98
-
rlarocque@chromium.org authored
This change causes the syncer to exit from its download then commit function if the download fails. This helps prevent the creation of server-side conflicts, which would be more likely to happen if a download failed but the following commit succeeded. The main changes are as follows: - Rather than proceed to the next step when a download updates failure is detected, the syncer will exit. This should cause the SyncScheduler to schedule a retry at a later time. - The definition of a download updates failure is now based on the return code of the download attempt, rather than checking the contents of the (possible non-existent) returned protobuf. This makes the error detection logic used here more closely match the logic used to decide whether or not to schedule retries. This implementation has a side-effect on configure sync cycles. The old behaviour was to handle failures by applying whatever updates we had downloaded at that point. The new behaviour will leave updates unapplied if any error occurs. This better matches a nearby comment's assertion which states that we should not attempt to apply updates until we have downloaded all of them. I believe the author of that comment would approve of this change. This change moves around some of the ExtensionActivityMonitor logic. It's important that we not take the data from the extensions acitivity monitor at the start of the cycle. Restoring that data is handled in the commit building and response code, which might not be executed if we need to break out early. This also fixes issue 123270. Most of the diffs for this change are concentrated in the unit tests: - Expose more of the SyncScheduler to the SyncerTest test harness. - Add functions to SyncerTest for testing specific types of sync jobs. - Add some functions that allow us to better control failures in MockConnectionManager. - Added tests for configure job success and failure. - Added tests for update then commit job success and failure. - Removed some redundant tests. - Removed unused test infrastructure. This change allows the integration tests to expose a bug that was introduced back in r118572. That commit assumed it was OK to not retry a job that failed due to a MIGRATION_DONE response from the server. That is incorrect, and this error has been fixed. BUG=122033, 123270 TEST=sync_unit_tests, specifically: SyncerTest.UpdateThenCommit, SyncerTest.UpdateFailsThenDontCommit, SyncerTest.ConfigureDownloadsTwoBatchesSuccess, SyncerTest.ConfigureFailsDontApplyUpdates Review URL: http://codereview.chromium.org/10103017 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@133754 0039d316-1c4b-4281-b951-d872f2087c98
-
jsbell@chromium.org authored
The source of the failures was not identified; there were no IDB changes in range. Apparently they're passing again - re-enabling to verify and catch regressions. BUG=123045 TEST=python chrome/test/functional/indexeddb.py R=nirnimesh@chromium.org Review URL: http://codereview.chromium.org/10173003 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@133753 0039d316-1c4b-4281-b951-d872f2087c98
-
ferringb@google.com authored
BUG=chromium-os:25280 TEST=Manual inspection in comparison to r19. TBR=zelidrag Review URL: http://codereview.chromium.org/10206008 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@133752 0039d316-1c4b-4281-b951-d872f2087c98
-
dyu@chromium.org authored
WaitUntilNavigationCompletes() can be determined. TEST=none BUG=124877 Review URL: https://chromiumcodereview.appspot.com/10217005 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@133751 0039d316-1c4b-4281-b951-d872f2087c98
-
nirnimesh@chromium.org authored
Fix all tests in chromeos_wifi_sanity.py except testToggleNetworkDevic. I'll look at that separately. R=stanleyw@chromium.org BUG=None TEST=chromeos_wifi_sanity in pyauto_functional Review URL: https://chromiumcodereview.appspot.com/10209007 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@133750 0039d316-1c4b-4281-b951-d872f2087c98
-
markusheintz@chromium.org authored
The corresponding CL: https://chromiumcodereview.appspot.com/10163002/ BUG=113688 TEST=none Review URL: https://chromiumcodereview.appspot.com/10180002 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@133749 0039d316-1c4b-4281-b951-d872f2087c98
-
sadrul@chromium.org authored
This fixes a crash that shows up when terminating from the system tray popup. BUG=105151,124310 TEST=WidgetObserverTest.DestroyBubble Review URL: https://chromiumcodereview.appspot.com/10204014 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@133748 0039d316-1c4b-4281-b951-d872f2087c98
-
zea@chromium.org authored
Previously it was an immutable struct that was passed around by making dynamic allocations and passing pointers. We now just have a class with only getters and no setters, but support for default copy and assign. This cleans up some code and makes some future work easier to pass snapshots around. BUG=none TEST=sync_unit_tests Review URL: http://codereview.chromium.org/10197004 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@133747 0039d316-1c4b-4281-b951-d872f2087c98
-
dpapad@chromium.org authored
This caused chromium os tests to fail, http://build.chromium.org/p/chromium.chromiumos/builders/Linux%20ChromiumOS%20Tests%20%281%29/builds/1981/steps/unit_tests/logs/DefaultMigrationHomepageIsNTP BUG=122936 TEST=Upgrade from 18 to 19 TBR=ben@chromium.org Review URL: https://chromiumcodereview.appspot.com/10049005 TBR=tbreisacher@chromium.org Review URL: https://chromiumcodereview.appspot.com/10173007 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@133746 0039d316-1c4b-4281-b951-d872f2087c98
-
flackr@chromium.org authored
This broke the SelectFileDialogExtensionBrowserTest.SelectFileAndOpen test on linux chromiumos browser_tests. BUG=chromium-os:26471 TEST=After entering the folder none of the files is selected. Review URL: https://chromiumcodereview.appspot.com/10204015 TBR=oleg@chromium.org Review URL: https://chromiumcodereview.appspot.com/10212005 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@133745 0039d316-1c4b-4281-b951-d872f2087c98
-
tburkard@chromium.org authored
PrerenderLocalPredictor will now keep around a reference to the HistoryService that it subscribed too, and will unsubscribe itself on destruction. Since PrerenderLocalPredictor is owned by PrerenderManager, and both PrerenderManager and HistoryService have the same lifetime as the underlying profile, the HistoryService object will not be kept around unnecessarily longer as a result of this. R=brettw, cbentzel Review URL: https://chromiumcodereview.appspot.com/10214004 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@133744 0039d316-1c4b-4281-b951-d872f2087c98
-
maruel@chromium.org authored
TBR=cmp@chromium.org BUG= TEST=try slaves will be faster git-svn-id: svn://svn.chromium.org/chrome/trunk/src@133743 0039d316-1c4b-4281-b951-d872f2087c98
-
jnd@chromium.org authored
The OCSP test server works now. (fixed by http://src.chromium.org/viewvc/chrome?view=rev&revision=133704) The on-demand OCSP test server is not supported on Android. Disable these tests. BUG=119642 TEST=green bots Review URL: http://codereview.chromium.org/9837027 TBR=rsleevi@chromium.org Review URL: http://codereview.chromium.org/10211002 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@133742 0039d316-1c4b-4281-b951-d872f2087c98
-
joi@chromium.org authored
BUG=none Review URL: http://codereview.chromium.org/10204018 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@133741 0039d316-1c4b-4281-b951-d872f2087c98
-
tbreisacher@chromium.org authored
BUG=122936 TEST=Upgrade from 18 to 19 TBR=ben@chromium.org Review URL: https://chromiumcodereview.appspot.com/10049005 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@133740 0039d316-1c4b-4281-b951-d872f2087c98
-
sergeyu@chromium.org authored
Review URL: http://codereview.chromium.org/10207007 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@133739 0039d316-1c4b-4281-b951-d872f2087c98
-
kevers@chromium.org authored
BUG=117186 TEST= Review URL: http://codereview.chromium.org/10169030 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@133738 0039d316-1c4b-4281-b951-d872f2087c98
-
jhawkins@chromium.org authored
Get rid of the multitude of close buttons. BUG=124648 TEST=none R=dbeam Review URL: http://codereview.chromium.org/10187008 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@133737 0039d316-1c4b-4281-b951-d872f2087c98
-
jhawkins@chromium.org authored
BUG=119646 TEST=none R=dbeam Review URL: http://codereview.chromium.org/10200002 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@133734 0039d316-1c4b-4281-b951-d872f2087c98
-
zmo@chromium.org authored
BUG=115122 TEST=GPU win/linux debug bots TBR=kbr Review URL: https://chromiumcodereview.appspot.com/10209001 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@133733 0039d316-1c4b-4281-b951-d872f2087c98
-
piman@chromium.org authored
In some cases, the TextureImageTransportSurface may get destroyed when no context is current. When that's the case, glDeleteTextures becomes a noop and we leak them. BUG=123933 TEST=manual Review URL: http://codereview.chromium.org/10200012 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@133732 0039d316-1c4b-4281-b951-d872f2087c98
-
elijahtaylor@google.com authored
Re-purpose linux-sdk-mono64 bot to build these release packages, since all the continuous building is happening on linux-sdk-mono32, this one is free. BUG=115363 TEST=bots,manual Note: This CL only affects the Native Client SDK Review URL: https://chromiumcodereview.appspot.com/10156003 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@133731 0039d316-1c4b-4281-b951-d872f2087c98
-
flackr@chromium.org authored
The SelectFileAndSave test was failing on linux chromiumos browsertests since r133663. This seems to be due to a name mismatch in the CL which renamed a method isFilterHiddenOn but attempted to call it as getFilterHidden. See https://chromiumcodereview.appspot.com/10206015. TBR=oleg BUG=None TEST=SelectFileDialogExtensionBrowserTest.SelectFileAndSave Review URL: https://chromiumcodereview.appspot.com/10215001 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@133730 0039d316-1c4b-4281-b951-d872f2087c98
-
skuhne@chromium.org authored
BUG=121456 TEST=None Review URL: http://codereview.chromium.org/10207016 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@133728 0039d316-1c4b-4281-b951-d872f2087c98
-
enal@chromium.org authored
(Also fixing some minor lint errors...) Review URL: http://codereview.chromium.org/10184011 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@133726 0039d316-1c4b-4281-b951-d872f2087c98
-
acolwell@chromium.org authored
- Moving ByteQueue from ChunkDemuxer into WebMStreamParser to simplify handling multiple StreamParsers. - Replacing OnAudioConfig & OnVideoConfig with a single OnNewConfigs method to make it easier to verify that initialization segments all contain the same number and type of streams. BUG=122909 TEST=Existing ChunkDemuxer tests. Review URL: http://codereview.chromium.org/10205004 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@133725 0039d316-1c4b-4281-b951-d872f2087c98
-
chrome-admin@google.com authored
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@133724 0039d316-1c4b-4281-b951-d872f2087c98
-
mnaganov@chromium.org authored
TBR=dglazkov@chromium.org Review URL: https://chromiumcodereview.appspot.com/10141012 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@133723 0039d316-1c4b-4281-b951-d872f2087c98
-