- 01 Aug, 2012 40 commits
-
-
hbono@chromium.org authored
This change adds a svn:executable flag to a python script. TBR=eatnumber BUG=none TEST=check_perms Review URL: https://chromiumcodereview.appspot.com/10823116 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@149369 0039d316-1c4b-4281-b951-d872f2087c98
-
rlarocque@chromium.org authored
Our counts of non-useless updates are wrong in part because of the way we track deletions. When an item is deleted, we flip the IS_DEL bit. On restart, we purge all fully synced IS_DEL items from our directory. However, we might still receive some re-deliveries of the tombstone for that item. The old algorithm would consider tombstones of non-existent items to be "useful", despite the fact that they're often just reflections of updates we've already received. The updated algorithm isn't perfect. There's no easy way to distinguish between a tombstone created by another client where this client never saw the original (which one could argue is useful, and definitely not a reflection) and the re-delivery of a tombstone created by another client which this client has already received and processed long ago (which is definitely not useful). Both scenarios look the same, and both will be counted as 'reflections' under the new algorithm. A similar issue arises with UNIQUE_CLIENT_TAG items. When we delete them we force their version to 0 locally. This makes our regular reflection detection algorithm ineffective. This change updates the algorithm to consider tombstones to items that have UNIQUE_CLIENT_TAG and are locally deleted to be reflections. It's not perfect, but it should be good enough for our purposes. BUG=139684 Review URL: https://chromiumcodereview.appspot.com/10834095 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@149368 0039d316-1c4b-4281-b951-d872f2087c98
-
dmurph@chromium.org authored
Review URL: https://chromiumcodereview.appspot.com/10825117 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@149367 0039d316-1c4b-4281-b951-d872f2087c98
-
yoshiki@chromium.org authored
BUG=none R=hshi@chromium.org Review URL: https://chromiumcodereview.appspot.com/10830076 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@149366 0039d316-1c4b-4281-b951-d872f2087c98
-
keishi@chromium.org authored
It will be used in WebKit for the color suggestion picker popup. BUG=139288 TEST=LayoutTests/platform/chromium/fast/forms/color/color-suggestion-picker-appearance.html Review URL: https://chromiumcodereview.appspot.com/10824058 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@149365 0039d316-1c4b-4281-b951-d872f2087c98
-
tfarina@chromium.org authored
BUG=133088 TBR=ben@chromium.org Review URL: https://chromiumcodereview.appspot.com/10831084 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@149364 0039d316-1c4b-4281-b951-d872f2087c98
-
dcblack@chromium.org authored
BUG=none Review URL: https://chromiumcodereview.appspot.com/10830059 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@149363 0039d316-1c4b-4281-b951-d872f2087c98
-
apatrick@chromium.org authored
BUG=135546 Review URL: https://chromiumcodereview.appspot.com/10843020 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@149362 0039d316-1c4b-4281-b951-d872f2087c98
-
chrome-admin@google.com authored
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@149361 0039d316-1c4b-4281-b951-d872f2087c98
-
noelallen@chromium.org authored
Remove hashes from DEPS file and instead use the ones specified in the NaCl repo for the version of NativeClient specified in the DEPS file. BUG=http://code.google.com/p/chromium/issues/detail?id=138285 TBR= bradnelson@google.com Review URL: https://chromiumcodereview.appspot.com/10821118 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@149360 0039d316-1c4b-4281-b951-d872f2087c98
-
piman@chromium.org authored
Previously, we would use a regular command buffer context for the shared offscreen contexts, which is unable to share resources with the TestWebGraphicsContext3D, raising asserts if for example filters are used in layers. This change makes us use TestWebGraphicsContext3D for all contexts when using --test-compositor BUG=139300 Review URL: https://chromiumcodereview.appspot.com/10828088 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@149357 0039d316-1c4b-4281-b951-d872f2087c98
-
hongbo.min@intel.com authored
BUG=139326 TEST=aura_unittests and views_unittests compile and run Review URL: https://chromiumcodereview.appspot.com/10824064 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@149356 0039d316-1c4b-4281-b951-d872f2087c98
-
gman@chromium.org authored
BUG=139409 Review URL: https://chromiumcodereview.appspot.com/10824120 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@149355 0039d316-1c4b-4281-b951-d872f2087c98
-
shishir@chromium.org authored
- Removing dcheck that two navigations on the same renderview with the same url should not have the same creation time. It looks like it is possible for tests to be able to do this and theoretically it is possible for this to happen in production. The code already this handles this case well, so the check will not be missed. - Add a check to see if WebContents returns empty URL before calling OnNavigationComplete. Review URL: https://chromiumcodereview.appspot.com/10825118 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@149353 0039d316-1c4b-4281-b951-d872f2087c98
-
jbates@chromium.org authored
BUG=137797 Review URL: https://chromiumcodereview.appspot.com/10826025 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@149352 0039d316-1c4b-4281-b951-d872f2087c98
-
sergeyu@chromium.org authored
One issue that is being fixed is that previously that class didn't properly handle the case when write is called from a callback or the object is destroyed from a callback. Review URL: https://chromiumcodereview.appspot.com/10836030 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@149350 0039d316-1c4b-4281-b951-d872f2087c98
-
smckay@chromium.org authored
Support for loading all default intent services. Necessary to allow editing of defaults from settings. Add support for loading all defaults from WebIntentsRegistry. BUG=137907 Review URL: https://chromiumcodereview.appspot.com/10838004 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@149349 0039d316-1c4b-4281-b951-d872f2087c98
-
rkc@chromium.org authored
If we run out of data on Verizon, the buy plan button shows up but clicking it does nothing. This is a P0 issue hence adding all the OWNER's from the current directory to the reviewers list, whoever can get it to it first :) R=zelidrag@chromium.org TBR=nkostylev@chromium.org,glotov@chromium.org,dpolukhin@chromium.org BUG=139917 TEST=Activate a verizon modem, run it out of data, then test if buy plan works correctly by taking us to the verizon portal to get more data. Review URL: https://chromiumcodereview.appspot.com/10826092 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@149348 0039d316-1c4b-4281-b951-d872f2087c98
-
alexeypa@chromium.org authored
Introducing the DaemonProcess class that will implements core of the daemon process functionality. It will manage the networking process running at lower privileges and maintains the list of virtual terminals. BUG=134694 Review URL: https://chromiumcodereview.appspot.com/10823062 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@149347 0039d316-1c4b-4281-b951-d872f2087c98
-
rkc@chromium.org authored
Add the user email field for Chrome on all other platforms (ChromeOS already has it); also make the field editable. R=estade@chromium.org BUG=94149 TEST=Send feedback reports from all 4 platforms, from both incognito and regular modes, making sure that the user e-mail is populated correctly and reported to the Feedback server correctly. Review URL: https://chromiumcodereview.appspot.com/10832078 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@149346 0039d316-1c4b-4281-b951-d872f2087c98
-
eatnumber@chromium.org authored
Introduce an API and associated smoke test for writing PyAuto tests which collect and analyze trace events. BUG=137356 TEST=manually Review URL: https://chromiumcodereview.appspot.com/10736055 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@149345 0039d316-1c4b-4281-b951-d872f2087c98
-
zea@chromium.org authored
Adds the preference for the bootstrap token and the bootstrapping functionality in the cryptographer so that we persist the keystore key across restarts. With this, we should only ever do one GetKey per client, and only on the first time that client signs in/restarts on a version with GetKey support (although it's not persisted across signouts/profile nukes) BUG=129665 TEST=unit_tests Review URL: https://chromiumcodereview.appspot.com/10540149 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@149344 0039d316-1c4b-4281-b951-d872f2087c98
-
kinaba@chromium.org authored
BUG=139561 TEST=manually tested that a file addition outside the Chromebook is reflected. Review URL: https://chromiumcodereview.appspot.com/10836005 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@149343 0039d316-1c4b-4281-b951-d872f2087c98
-
rkc@chromium.org authored
Currently we start in mirrored mode by default every time; change this so that if the extended desktop is enabled, we default to that instead. R=sky@chromium.org BUG=138093 Review URL: https://chromiumcodereview.appspot.com/10836037 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@149342 0039d316-1c4b-4281-b951-d872f2087c98
-
mmenke@chromium.org authored
how long it's been since idle sources have logged their most recent event. BUG=139830 Review URL: https://chromiumcodereview.appspot.com/10825116 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@149341 0039d316-1c4b-4281-b951-d872f2087c98
-
ukai@chromium.org authored
R=nirnimesh@chromium.org BUG=134540 Review URL: https://chromiumcodereview.appspot.com/10832091 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@149340 0039d316-1c4b-4281-b951-d872f2087c98
-
tburkard@chromium.org authored
R=jar@chromium.org Review URL: https://chromiumcodereview.appspot.com/10829113 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@149339 0039d316-1c4b-4281-b951-d872f2087c98
-
chrome-admin@google.com authored
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@149338 0039d316-1c4b-4281-b951-d872f2087c98
-
jbates@chromium.org authored
TBR=jbates@chromium.org Review URL: https://chromiumcodereview.appspot.com/10821122 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@149337 0039d316-1c4b-4281-b951-d872f2087c98
-
satorux@chromium.org authored
Feeds are always come from the server. There is no need to take FROM_SERVER from callers. BUG=130669 TEST=out/Release/unit_tests --gtest_filter=GData* && out/Release/browser_tests --gtest_filter=GData* Review URL: https://chromiumcodereview.appspot.com/10827108 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@149336 0039d316-1c4b-4281-b951-d872f2087c98
-
dtrainor@chromium.org authored
Added ContentViewCore.evaluateJavaScript and tied it into ContentViewClient.onEvaluateJavaScriptResult. BUG=http://crbug.com/139732 Review URL: https://chromiumcodereview.appspot.com/10848002 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@149335 0039d316-1c4b-4281-b951-d872f2087c98
-
arbenson@google.com authored
This change will make the x86-32 sandbox on Linux non-zero-based until the change at http://codereview.chromium.org/10832040/ is committed in Chromium. Also, on Atom, performance will be temporarily reduced but not broken. BUG=http://code.google.com/p/nativeclient/issues/detail?id=2927 TEST=trybots Review URL: https://chromiumcodereview.appspot.com/10826039 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@149333 0039d316-1c4b-4281-b951-d872f2087c98
-
dhollowa@chromium.org authored
Moves the web_contents from SearchViewController to SearchTabHelper. This allows each NTP tab to hold its own state. BUG=133529 TEST=Manual tests, create two new tabs, change one. Observe differences between the two. R=sky@chromium.org Review URL: https://chromiumcodereview.appspot.com/10827055 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@149332 0039d316-1c4b-4281-b951-d872f2087c98
-
chenyu@chromium.org authored
This implementation creates a DIR_APP_DATA directory if it does not exist. This is needed for iOS because on iOS NSApplicationSupportDirectory directory does not exist unless it is created explicitly. BUG=NONE TEST=NONE Review URL: https://chromiumcodereview.appspot.com/10795010 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@149331 0039d316-1c4b-4281-b951-d872f2087c98
-
thestig@chromium.org authored
BUG=none TEST=none Review URL: https://chromiumcodereview.appspot.com/10826077 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@149330 0039d316-1c4b-4281-b951-d872f2087c98
-
aurimas@chromium.org authored
Upstreaming the select action functionality for Android. BUG=139111 Review URL: https://chromiumcodereview.appspot.com/10828098 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@149329 0039d316-1c4b-4281-b951-d872f2087c98
-
sievers@chromium.org authored
This renders to a SurfaceView using texture sharing on the GPU thread. There is a bit of a public interface added to let the app create a cmdbuffer (we want run GL contexts on the same thread when sharing resources on Android) and perform the handshaking needed for sharing the two compositor buffers. It has bugs, such as that it doesn't handle it yet when the UI surface handle changes (e.g. when hiding and restoring the app). BUG=136923 Review URL: https://chromiumcodereview.appspot.com/10823051 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@149327 0039d316-1c4b-4281-b951-d872f2087c98
-
hfung@google.com authored
BUG=136848 Review URL: https://chromiumcodereview.appspot.com/10829068 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@149326 0039d316-1c4b-4281-b951-d872f2087c98
-
chrome-admin@google.com authored
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@149325 0039d316-1c4b-4281-b951-d872f2087c98
-
frankwang@google.com authored
DuplicateContentResourceHandler to monitor resources and track how many times they are duplicated as a way to simulate the cache. R=gavinp@chromium.org, darin@chromium.org Review URL: https://chromiumcodereview.appspot.com/10701151 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@149324 0039d316-1c4b-4281-b951-d872f2087c98
-