- 01 May, 2012 40 commits
-
-
mmocny@chromium.org authored
BUG=123382 TEST=Manual Committed: http://src.chromium.org/viewvc/chrome?view=rev&revision=134428 Review URL: http://codereview.chromium.org/10083056 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@134801 0039d316-1c4b-4281-b951-d872f2087c98
-
zhaoqin@google.com authored
TBR=zelidrag@chromium.org BUG=125833 TEST=waterfall.sh Review URL: https://chromiumcodereview.appspot.com/10286003 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@134800 0039d316-1c4b-4281-b951-d872f2087c98
-
elijahtaylor@google.com authored
BUG=115363 TEST=manual R=binji@chromium.org Review URL: https://chromiumcodereview.appspot.com/10281006 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@134799 0039d316-1c4b-4281-b951-d872f2087c98
-
noelallen@google.com authored
The scons build is failing to copy the extension when putting exe in the tools output directory. Added batch file to simplify tries on Windows. BUG=125762 Review URL: https://chromiumcodereview.appspot.com/10260032 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@134798 0039d316-1c4b-4281-b951-d872f2087c98
-
zhaoqin@google.com authored
TBR=palmer@chromium.org BUG=125807 TEST=waterfall.sh Review URL: https://chromiumcodereview.appspot.com/10283007 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@134797 0039d316-1c4b-4281-b951-d872f2087c98
-
craigdh@google.com authored
Trial to see if this will resolve the current flakiness issues in policy tests. BUG=chromium-os:30221 TEST=functional/policy.py policy.PolicyTest.testBlacklistPolicy Review URL: https://chromiumcodereview.appspot.com/10287002 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@134796 0039d316-1c4b-4281-b951-d872f2087c98
-
rsesek@chromium.org authored
BUG=none TEST=Visual. Bubbles look more up-to-date on later OSes. Review URL: http://codereview.chromium.org/10272035 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@134795 0039d316-1c4b-4281-b951-d872f2087c98
-
vabr@chromium.org authored
Two steps: 1. moving chrome/browser/extensions/extension_omnibox* to a new directory chrome/browser/extensions/api/omnibox, along with dropping the prefix "extension_" 2. putting the classes, structs and functions from [extension_]omnibox_api.h to namespace extensions BUG=125622 TEST=N/A Review URL: http://codereview.chromium.org/10265022 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@134794 0039d316-1c4b-4281-b951-d872f2087c98
-
nirnimesh@chromium.org authored
BUG= TEST= Review URL: https://chromiumcodereview.appspot.com/10285003 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@134793 0039d316-1c4b-4281-b951-d872f2087c98
-
kerz@chromium.org authored
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@134792 0039d316-1c4b-4281-b951-d872f2087c98
-
apatrick@chromium.org authored
The function glProduceTexture(target, mailbox) removes a texture from a context group and puts it in a "mailbox" that is accessible to all context groups on the same channel. Then glConsumeTexture(target, mailbox) adds the texture to a context group, possibly a different one, if the caller knows the name of the mailbox. From the point of view of the caller, the texture objects themselves do not move, just the texels. In terms of the underlying GL, the TextureInfo service IDs are reassigned as necessary. A texture in a mailbox is destroyed when the context group that put it there is destroyed. Expected usage is: // Context 1 glBindTexture(GL_TEXTURE_2D, foo); glProduceTexture(GL_TEXTURE_2D, secret_name); glFlush(); // Context 2 glBindTexture(GL_TEXTURE_2D, bar); glConsumeTexture(GL_TEXTURE_2D, secret_name); Review URL: http://codereview.chromium.org/10106015 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@134791 0039d316-1c4b-4281-b951-d872f2087c98
-
alexeypa@chromium.org authored
Review URL: https://chromiumcodereview.appspot.com/10270034 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@134790 0039d316-1c4b-4281-b951-d872f2087c98
-
elijahtaylor@google.com authored
BUG=none TEST=manual TBR=binji@chromium.org Review URL: https://chromiumcodereview.appspot.com/10277002 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@134789 0039d316-1c4b-4281-b951-d872f2087c98
-
dpolukhin@chromium.org authored
If pinned app is unloaded, put it to pending_pinned_apps_ list and pin it again when it is loaded again. BUG=123293 TEST=manual Review URL: http://codereview.chromium.org/10170029 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@134788 0039d316-1c4b-4281-b951-d872f2087c98
-
oshima@chromium.org authored
TBR=zhaoqin@google.com BUG=125801 TEST=none Review URL: https://chromiumcodereview.appspot.com/10278002 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@134787 0039d316-1c4b-4281-b951-d872f2087c98
-
tfarina@chromium.org authored
R=ben@chromium.org Review URL: https://chromiumcodereview.appspot.com/10262027 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@134786 0039d316-1c4b-4281-b951-d872f2087c98
-
satorux@chromium.org authored
This was introduced in crrev.com/134770 - DCHECK(entry || error != base::PLATFORM_FILE_OK); + DCHECK(error != base::PLATFORM_FILE_OK); The latter does not make sense, as we are mostly expecting error to be base::PLATFORM_FILE_OK. Besides, the read directory operation can fail for various reasons. BUG=chromium-os:30251 TEST=the DCHECK failure is gone with --enable-dcheck Review URL: https://chromiumcodereview.appspot.com/10279002 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@134784 0039d316-1c4b-4281-b951-d872f2087c98
-
rdsmith@chromium.org authored
BUG=122085 R=asanka@chromium.org Review URL: http://codereview.chromium.org/10237010 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@134783 0039d316-1c4b-4281-b951-d872f2087c98
-
varunjain@chromium.org authored
every call to GetDragDestDelegate() destroying local state. BUG=123359 TEST=dnd works on bookmark manager Review URL: http://codereview.chromium.org/10273030 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@134782 0039d316-1c4b-4281-b951-d872f2087c98
-
kkania@chromium.org authored
Revert 134774 because of win aura compile and chromium os browser_test crashes - Created uber tray UI for monitoring ongoing WebDrive sync operations BUG=chromium-os:30075 TEST=none Review URL: https://chromiumcodereview.appspot.com/10214013 TBR=zelidrag@chromium.org Review URL: https://chromiumcodereview.appspot.com/10285002 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@134778 0039d316-1c4b-4281-b951-d872f2087c98
-
tfarina@chromium.org authored
This is a follow up to r133991. R=stevenjb@chromium.org,avayvod@chromium.org Review URL: https://chromiumcodereview.appspot.com/10254027 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@134775 0039d316-1c4b-4281-b951-d872f2087c98
-
zelidrag@chromium.org authored
BUG=chromium-os:30075 TEST=none Review URL: https://chromiumcodereview.appspot.com/10214013 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@134774 0039d316-1c4b-4281-b951-d872f2087c98
-
nirnimesh@chromium.org authored
TBR=craigdh@chromium.org R=craigdh@chromium.org BUG= TEST= Review URL: https://chromiumcodereview.appspot.com/10270038 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@134773 0039d316-1c4b-4281-b951-d872f2087c98
-
sleffler@chromium.org authored
Add TimeTicks::NowFromSystemTraceTime to return the current system trace event clock (falling back to TimeTicks::HighResNow when not supported). On systems where the system trace clock is available this allows system and chrome events to be stamped with a common clock (eliminating post-processing time shift adjustment that can be hard). BUG=chromium-os:27809 TEST=unit tests + collect trace data on chrome os w/ kernel that supports clock_gettime(CLOCK_SYSTEM_TRACE) Change-Id: Ia6a500bd13a6f09c49052a1dd1421027960d8dea Review URL: http://codereview.chromium.org/10257020 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@134772 0039d316-1c4b-4281-b951-d872f2087c98
-
zhaoqin@google.com authored
TBR=palmer@chromium.org BUG=125807 TEST=waterfall.sh Review URL: https://chromiumcodereview.appspot.com/10274034 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@134771 0039d316-1c4b-4281-b951-d872f2087c98
-
satorux@chromium.org authored
Instead use GetFileInfoByPathAsync() and ReadDirectoryByPathAsync(). This is in preparation for making FindEntryByPathAsync() private. BUG=chromium-os:30251 TEST=gdata in the file manager works as before Review URL: https://chromiumcodereview.appspot.com/10268023 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@134770 0039d316-1c4b-4281-b951-d872f2087c98
-
zhaoqin@google.com authored
TBR=oshima@chromium.org BUG=125801 TEST=waterfall.sh Review URL: https://chromiumcodereview.appspot.com/10261035 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@134768 0039d316-1c4b-4281-b951-d872f2087c98
-
zysxqn@google.com authored
BUG=120798 TEST=not tested Review URL: http://codereview.chromium.org/10226009 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@134766 0039d316-1c4b-4281-b951-d872f2087c98
-
sky@chromium.org authored
BUG=123274 TEST=none Review URL: https://chromiumcodereview.appspot.com/10267023 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@134764 0039d316-1c4b-4281-b951-d872f2087c98
-
satorux@chromium.org authored
|root_| was accessed without a lock in FindEntryByPathOnCallingThread(), which is used to complete FindEntryByPathAsync(). Along the way, rename FindEntryByPathOnCallingThread() to FindEntryByPathSyncOnUIThread(), and add a couple of DCHECK(CurrentlyOn(UI)), where FindEntryByPathSyncOnUIThread() is called. BUG=chromium-os:30204 TEST=unit tests Review URL: https://chromiumcodereview.appspot.com/10270035 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@134763 0039d316-1c4b-4281-b951-d872f2087c98
-
achuith@chromium.org authored
BUG=120254 TEST=In the pointer overlay, should see Learn more link for simple scrolling. This 404s right now. Review URL: http://codereview.chromium.org/10274024 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@134762 0039d316-1c4b-4281-b951-d872f2087c98
-
tbarzic@chromium.org authored
The default extensions should be able to load NaCl modules. This is a problem now because they aren't really distinguishable from normal extensions. To fix this, mark them as "from webstore" when they're loaded. Also, revert crrev.com/130235 as that didn't work BUG=chromium-os:28707 TEST=none Review URL: https://chromiumcodereview.appspot.com/10269031 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@134761 0039d316-1c4b-4281-b951-d872f2087c98
-
alexeypa@chromium.org authored
Make sure the elevated controller release timer is stopped and destroyed on the thread it was created on. BUG=125364 TEST=manual Review URL: http://codereview.chromium.org/10272029 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@134760 0039d316-1c4b-4281-b951-d872f2087c98
-
mazda@chromium.org authored
BUG=125415 TEST=Manual Review URL: http://codereview.chromium.org/10254024 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@134759 0039d316-1c4b-4281-b951-d872f2087c98
-
palmer@chromium.org authored
Had a renamed method that is only called in official builds. BUG=113280, 120373 TBR=rsleevi@chromium.org Review URL: https://chromiumcodereview.appspot.com/10272036 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@134758 0039d316-1c4b-4281-b951-d872f2087c98
-
kkania@chromium.org authored
Broke browser_tests on ChromiumOS bots. BUG=115967 TEST=none Review URL: http://codereview.chromium.org/10273023 TBR=oshima@chromium.org Review URL: https://chromiumcodereview.appspot.com/10268027 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@134756 0039d316-1c4b-4281-b951-d872f2087c98
-
shawnsingh@chromium.org authored
Currently the flush operation assumes that WebKit will request the ppapi plugin to repaint any newly exposed regions, and so it only invalidates the visible portion of changes. However, for accelerated compositing, this behavior is not correct. This patch rearranges the logic to work for both accelerated and non-accelerated compositing. BUG=122860 TEST=tested manually, created crbug.com/125763 for making a unit test Review URL: http://codereview.chromium.org/10223009 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@134755 0039d316-1c4b-4281-b951-d872f2087c98
-
palmer@chromium.org authored
Do some minor "gcl lint" cleanup while here. BUG=113280, 120373 TEST=net_unittests, browser_tests, unit_tests TransportSecurityPersisterTest.* Review URL: http://codereview.chromium.org/9415040 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@134754 0039d316-1c4b-4281-b951-d872f2087c98
-
chrome-admin@google.com authored
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@134753 0039d316-1c4b-4281-b951-d872f2087c98
-
mseaborn@chromium.org authored
This pulls in the following Native Client changes: r8445: (khim) Further reduction of validator size r8446: (khim) Shrink decoder-x86_{32,64}.c r8447: (khim) Fix lock handling in some instructions r8448: (robertm) PNaCl: Switch the unsandboxed linking of dynamic/shared images to gold r8449: (robertm) Roll pnacl_llvm_testsuite_rev which will make more of the tests build. r8450: (kschimpf) Make inline interface methods static. Also separate4 old and new actual r8451: (kschimpf) Speed up test comparisons of actual vs baseline by 33%. r8452: (robertm) Disable the new run_sock_test which is broken for pnacl r8453: (robertm) Mark 3 more lvm-test-suite tests as passing r8454: (mseaborn) Update chrome_rev in DEPS (but not chromebinaries_rev) r8456: (dschuff) Allow translation of spec benchmarks on arm hw r8457: (jvoung) Make pnacl library searcher check the filetype for sanity. r8458: (bradchen) Test ragel decoder/validator with enuminst. r8459: (mseaborn) Split sel_ldr_launcher.cc into _base.cc and _standalone.cc files r8460: (dschuff) Modify -q flag of run.py to output nothing to stdout/stderr at all r8461: (mseaborn) Update chrome_rev in DEPS (but not chromebinaries_rev) r8463: (mseaborn) Remove sel_ldr_launcher_chrome.cc, which has been moved to the Chromium repo BUG=none TEST=nacl_integration Review URL: https://chromiumcodereview.appspot.com/10271029 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@134752 0039d316-1c4b-4281-b951-d872f2087c98
-