- 31 Jul, 2012 40 commits
-
-
fischman@chromium.org authored
Review URL: https://chromiumcodereview.appspot.com/10837026 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@149318 0039d316-1c4b-4281-b951-d872f2087c98
-
chrome://*abodenha@chromium.org authored
If the user has third party cookies blocked and a piece of Chrome's web ui needs to make an XHR to a logged in Google service (for example Print Preview talking to Cloud Print) the cookies would be blocked in the request. Consensus on chromium-dev is that content block settings like this should not apply to chrome UI. Also adds unit tests for ShouldAllowAllContent. BUG=136391 TEST=Unit tests should pass. Verify 136391. Review URL: https://chromiumcodereview.appspot.com/10826089 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@149317 0039d316-1c4b-4281-b951-d872f2087c98
-
kinuko@chromium.org authored
Use the virtual path to set the blob's mime type for CreateSnapshotFile, otherwise each FS implementation needs to name a temporary file with the same extension. platform_path might be just a cryptic temporary/cache file name. BUG=none TEST=existing tests Review URL: https://chromiumcodereview.appspot.com/10821096 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@149316 0039d316-1c4b-4281-b951-d872f2087c98
-
rlarocque@chromium.org authored
Missed this one in r149062. BUG=139635 Review URL: https://chromiumcodereview.appspot.com/10834091 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@149314 0039d316-1c4b-4281-b951-d872f2087c98
-
thestig@chromium.org authored
BUG=139346 Review URL: https://chromiumcodereview.appspot.com/10837031 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@149313 0039d316-1c4b-4281-b951-d872f2087c98
-
tedvessenes@gmail.com authored
BUG=108171 Review URL: https://chromiumcodereview.appspot.com/10821062 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@149312 0039d316-1c4b-4281-b951-d872f2087c98
-
thestig@chromium.org authored
BUG=139842 TEST=none TBR=ben Review URL: https://chromiumcodereview.appspot.com/10825110 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@149311 0039d316-1c4b-4281-b951-d872f2087c98
-
paivanof@gmail.com authored
while writing table after rebuilding. BUG=61102 Review URL: https://chromiumcodereview.appspot.com/10800005 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@149310 0039d316-1c4b-4281-b951-d872f2087c98
-
kxing@chromium.org authored
Review URL: https://chromiumcodereview.appspot.com/10820059 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@149309 0039d316-1c4b-4281-b951-d872f2087c98
-
yusukes@chromium.org authored
BUG=none TEST=try passed Review URL: https://chromiumcodereview.appspot.com/10830087 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@149308 0039d316-1c4b-4281-b951-d872f2087c98
-
mitchellwrosen@chromium.org authored
BUG=121174 Review URL: https://chromiumcodereview.appspot.com/10694062 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@149307 0039d316-1c4b-4281-b951-d872f2087c98
-
rlarocque@chromium.org authored
This crash was introduced in r148926, which changes SyncManager init behaviour. Previously, the SyncManager would end up with a valid SyncScheduler regardless of whether or not the initialization failed. This SyncScheduler would later play an important role in shutting down the syncer. Without a scheduler, the shutdown process crashes. The ProfileSyncServiceTest.CorruptDatabase test simulates the scenario we fail to load a sync directory. This will result in a SyncManager initialization failure. It is intended to test that this failure is handled by the ProfileSyncService, SyncBackendHost and SyncManager. BUG=139723 Review URL: https://chromiumcodereview.appspot.com/10830100 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@149306 0039d316-1c4b-4281-b951-d872f2087c98
-
tommi@chromium.org authored
Candidate fix for a crash at shutdown when the IO thread is going away. More details in the bug report. BUG=139790 Review URL: https://chromiumcodereview.appspot.com/10821109 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@149305 0039d316-1c4b-4281-b951-d872f2087c98
-
hshi@chromium.org authored
BUG=139442 TEST=CQ Review URL: https://chromiumcodereview.appspot.com/10831059 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@149304 0039d316-1c4b-4281-b951-d872f2087c98
-
vitalybuka@chromium.org authored
No functionality changed except naming. Server side changes already alive. BUG=137129 TEST=unittest Review URL: https://chromiumcodereview.appspot.com/10690177 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@149303 0039d316-1c4b-4281-b951-d872f2087c98
-
mitchellwrosen@chromium.org authored
Currently supports string->int, string->int64, and int->string. BUG=139076 Review URL: https://chromiumcodereview.appspot.com/10825029 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@149302 0039d316-1c4b-4281-b951-d872f2087c98
-
derat@chromium.org authored
BUG=128805 TEST=none TBR=ben@chromium.org Review URL: https://chromiumcodereview.appspot.com/10824118 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@149301 0039d316-1c4b-4281-b951-d872f2087c98
-
dschuff@chromium.org authored
On surfaway when the Plugin object gets destroyed, the coordinator joins the translation thread, which could be waiting for an SRPC to return. But the compiler or linker could be blocked (or about to block) on a reverse service call, which could cause a deadlock. So, the reverse service interface for the translator or linker needs to be shut down as well which will cause the nexe's RPC to fail and break the deadlock. Also, join the translation thread in the streaming translation object where it was created to make sure the objects it needs are live. R=jvoung@chromium.org,sehr@chromium.org,robertm@chromium.org BUG=http://code.google.com/p/nativeclient/issues/detail?id=2195 TEST=nacl_integration Review URL: https://chromiumcodereview.appspot.com/10843009 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@149300 0039d316-1c4b-4281-b951-d872f2087c98
-
derat@chromium.org authored
This adds a class that uses leveldb to save and load contacts::Contact protocol buffers to/from disk. BUG=128805 TEST=none TBR=ben@chromium.org Review URL: https://chromiumcodereview.appspot.com/10832064 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@149299 0039d316-1c4b-4281-b951-d872f2087c98
-
alexeypa@chromium.org authored
Review URL: https://chromiumcodereview.appspot.com/10832054 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@149298 0039d316-1c4b-4281-b951-d872f2087c98
-
fsamuel@chromium.org authored
BUG=none Test=Some new browser plugin tests that will be upstreamed independently Review URL: https://chromiumcodereview.appspot.com/10823086 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@149297 0039d316-1c4b-4281-b951-d872f2087c98
-
zea@chromium.org authored
BUG=139708 TEST=none Review URL: https://chromiumcodereview.appspot.com/10827093 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@149296 0039d316-1c4b-4281-b951-d872f2087c98
-
rdevlin.cronin@chromium.org authored
BUG=139042,117261 Review URL: https://chromiumcodereview.appspot.com/10824030 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@149295 0039d316-1c4b-4281-b951-d872f2087c98
-
tommi@chromium.org authored
Until Sawbuck gets updated (I plan to do that soon), devs have to add a few registry entries for this to work, but that's simple to do and a one time thing per machine and the instructions are in the code. TEST=Content Shell and Sawbuck should work together (see above). Review URL: https://chromiumcodereview.appspot.com/10825080 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@149294 0039d316-1c4b-4281-b951-d872f2087c98
-
strobe@google.com authored
BUG= TEST=OffsetByteQueueTest Review URL: https://chromiumcodereview.appspot.com/10823069 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@149293 0039d316-1c4b-4281-b951-d872f2087c98
-
kaznacheev@chromium.org authored
BUG=137594 Review URL: https://chromiumcodereview.appspot.com/10826084 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@149292 0039d316-1c4b-4281-b951-d872f2087c98
-
cduvall@chromium.org authored
This change splits devtools_api.json into a separate file per namespace so that JSON schema compiler can parse it. Without that, HandlebarDictGenerator can't access the API, and the docs server can't render it BUG=131095 Review URL: https://chromiumcodereview.appspot.com/10797039 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@149291 0039d316-1c4b-4281-b951-d872f2087c98
-
rbyers@chromium.org authored
Move webkit_resource.grd to be in the same directory as all the resources. This is consistent with what we do elsewhere, and avoids a limitation of the new grit support for chrome_scaled_image (it expects 'context' to be a specific form). Move all the current images into a default_100_percent sub-directory. Images were added to their new location separately (due to try/cq limitations on binary files) here: http://src.chromium.org/viewvc/chrome?view=rev&revision=148389 Add support for the 2x text area resize corner image. Note that I didn't make the .cur files support multiple resolutions because .cur files themselves can contain multiple resolutions, and when we support high-DPI on windows (the only place these are used), we'll probably want to use multi-resolution .cur files so that the cursor seamlessly changes when moving between different density screens. Also fixes the addition of 'hand' cursors to be windows specific (as all the other cursors are now). TBR=sky@chromium.org BUG=134046 TEST= Review URL: https://chromiumcodereview.appspot.com/10701105 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@149290 0039d316-1c4b-4281-b951-d872f2087c98
-
smckay@chromium.org authored
BUG=137907 Review URL: https://chromiumcodereview.appspot.com/10834076 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@149289 0039d316-1c4b-4281-b951-d872f2087c98
-
lambroslambrou@chromium.org authored
This is so that the system startup files in /etc/X11/Xsession.d/ are sourced before running the chosen session. BUG=139846 Review URL: https://chromiumcodereview.appspot.com/10843011 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@149288 0039d316-1c4b-4281-b951-d872f2087c98
-
alokp@chromium.org authored
Expose a gpu-benchmark-only printToSkPicture API to JS. This function records the page to an SkPicture, and dumps the resulting picture to a local file. BUG=130422 Review URL: https://chromiumcodereview.appspot.com/10787025 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@149287 0039d316-1c4b-4281-b951-d872f2087c98
-
thakis@chromium.org authored
* Lets -Wunused-private-field find more stuff * Fixes an ASan problem on precise * Improves the plugin's handling of inner classes (off by default, can be enabled with |-Xclang -plugin-arg-find-bad-constructs -Xclang check-inner-classes|) * Makes addr2line much faster on linux BUG=139346 TBR=mark for base (the change was reviewed as part of https://chromiumcodereview.appspot.com/10833055/) Review URL: https://chromiumcodereview.appspot.com/10825104 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@149286 0039d316-1c4b-4281-b951-d872f2087c98
-
cduvall@chromium.org authored
We now have a small preview server that can be run without App Engine. I also made some fixes to the integration tests. BUG=131095 Review URL: https://chromiumcodereview.appspot.com/10823105 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@149285 0039d316-1c4b-4281-b951-d872f2087c98
-
brettw@chromium.org authored
Review URL: https://chromiumcodereview.appspot.com/10823113 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@149284 0039d316-1c4b-4281-b951-d872f2087c98
-
gspencer@chromium.org authored
when they fail to show up in the wifi scan (they're hidden, so they aren't expected to show up). BUG=chromium:137273 TEST=Ran on device, tested connection to hidden network multiple times with no failure. Review URL: https://chromiumcodereview.appspot.com/10849003 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@149283 0039d316-1c4b-4281-b951-d872f2087c98
-
navabi@google.com authored
BUG= Review URL: https://chromiumcodereview.appspot.com/10823107 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@149280 0039d316-1c4b-4281-b951-d872f2087c98
-
tommi@chromium.org authored
Add support for device removal/arrival detection with device type. For now this allows us to detect when audio and video capture devices are connected/disconnected. TEST=Try connecting and disconnecting USB audio/video devices. You should see notifications in the log about those operations being detected. BUG=137799 Review URL: https://chromiumcodereview.appspot.com/10824086 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@149279 0039d316-1c4b-4281-b951-d872f2087c98
-
gdk@chromium.org authored
The USB control transfer function assumed that a user would appropriately size their buffer in order to be able to contain the control transfer header. This has proved to be unnecessary, and this patch reallocates the transfer buffer with enough room for the control transfer setup. BUG=136812 TEST=none Review URL: https://chromiumcodereview.appspot.com/10823081 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@149278 0039d316-1c4b-4281-b951-d872f2087c98
-
satorux@chromium.org authored
We'll need to get rid of them, but for now, just make them private. BUG=137725 TEST=none Review URL: https://chromiumcodereview.appspot.com/10834093 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@149277 0039d316-1c4b-4281-b951-d872f2087c98
-
thestig@chromium.org authored
BUG=139849 TEST=none Review URL: https://chromiumcodereview.appspot.com/10846003 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@149276 0039d316-1c4b-4281-b951-d872f2087c98
-