summaryrefslogtreecommitdiffstats
Commit message (Collapse)AuthorAgeFilesLines
* Remove PP_FileInfo_Dev which appears to be unused.raymes@chromium.org2012-10-052-16/+1
| | | | | | | | | | | All of the structs inside the file are type-def'ed to the non-dev equivalents and there is no usage in the codebase. BUG= Review URL: https://codereview.chromium.org/11065038 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@160504 0039d316-1c4b-4281-b951-d872f2087c98
* [chrome-remote-contorl] Simple perf test for crc evaluate performancenduca@chromium.org2012-10-051-0/+39
| | | | | | | | R=tonyg@chromium.org Review URL: https://codereview.chromium.org/11036064 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@160503 0039d316-1c4b-4281-b951-d872f2087c98
* [chrome-remote-control] Handle crashed render processesnduca@chromium.org2012-10-058-16/+63
| | | | | | | | BUG=154232 Review URL: https://codereview.chromium.org/11030046 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@160502 0039d316-1c4b-4281-b951-d872f2087c98
* Update .DEPS.gitchrome-admin@google.com2012-10-051-2/+2
| | | | git-svn-id: svn://svn.chromium.org/chrome/trunk/src@160501 0039d316-1c4b-4281-b951-d872f2087c98
* WebKit roll 130452:130529jchaffraix@chromium.org2012-10-051-1/+1
| | | | | | | TBR=dpranke@chromium.org Review URL: https://codereview.chromium.org/11065047 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@160500 0039d316-1c4b-4281-b951-d872f2087c98
* Show the URL scheme as well as the host and port when prompting for HTTP ↵palmer@chromium.org2012-10-051-1/+2
| | | | | | | | | | Basic Auth credentials. BUG=153917 Review URL: https://chromiumcodereview.appspot.com/11039031 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@160499 0039d316-1c4b-4281-b951-d872f2087c98
* VAVDA: Move Decode job submission onto the GPU ChildProcess.posciak@chromium.org2012-10-054-67/+94
| | | | | | | | | | | | | | | | | | | | | | | | | | | | This moves submission of the decode job (uploading parameters and slices to the GPU) onto the GPU process ChildThread. This is to work around buggy Intel libva driver, which appears to have race problems if job submission for the same VA context happens from separate thread. This move will have a very minimal effect on performance, it changes the flow from: (Decoder thread) SubmitDecodeBuffers() ScheduleDecodeJob() (GPU thread) Sync() to doing everything above on the GPU thread. This is not a big problem, as the operations moved from decoder thread are nonblocking and fast, Sync() being the heavy one. BUG=151664 TEST=manual runs Review URL: https://chromiumcodereview.appspot.com/11026072 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@160498 0039d316-1c4b-4281-b951-d872f2087c98
* Move android compile setup into compile buildstepilevy@chromium.org2012-10-051-1/+1
| | | | | | | | | | TBR=yaron BUG= Review URL: https://codereview.chromium.org/11078003 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@160497 0039d316-1c4b-4281-b951-d872f2087c98
* cc: Remove unnecessary includes of build_config.h from switches.*tfarina@chromium.org2012-10-052-2/+0
| | | | | | | | R=enne@chromium.org Review URL: https://codereview.chromium.org/11038065 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@160496 0039d316-1c4b-4281-b951-d872f2087c98
* Return the thread handle when launching a process in a different session via ↵alexeypa@chromium.org2012-10-051-110/+212
| | | | | | | | | | the execution server on Windows XP. BUG=134694 Review URL: https://chromiumcodereview.appspot.com/11065016 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@160495 0039d316-1c4b-4281-b951-d872f2087c98
* Upstream mode methods in ContentView.nileshagrawal@chromium.org2012-10-051-0/+57
| | | | | | | | BUG=137571 Review URL: https://codereview.chromium.org/11040068 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@160494 0039d316-1c4b-4281-b951-d872f2087c98
* [NaCl SDK] Fix the sdk_updater auto-update feature when /tmp is a different ↵binji@chromium.org2012-10-052-3/+11
| | | | | | | | | | | | | | | | | filesystem. os.rename fails when the source and destination are different filesystems. shutil.move does a os.rename, but if it fails for this reason, copies and removes instead. BUG=none TBR=noelallen@chromium.org NOTRY=true Review URL: https://chromiumcodereview.appspot.com/11029060 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@160493 0039d316-1c4b-4281-b951-d872f2087c98
* Don't pass SDKROOT to ibtool.mark@chromium.org2012-10-051-1/+12
| | | | | | Review URL: https://codereview.chromium.org/11026078 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@160491 0039d316-1c4b-4281-b951-d872f2087c98
* Expand ownership of pyauto testsnirnimesh@chromium.org2012-10-052-2/+5
| | | | | | | | | BUG=None TEST=None Review URL: https://codereview.chromium.org/11068031 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@160490 0039d316-1c4b-4281-b951-d872f2087c98
* In-chorme viewer for metro (part 2)cpu@chromium.org2012-10-0524-95/+460
| | | | | | | | | | | - Wires metro mouse move, mouse click to aura viewer - Introduces a new RootWindowHost, one that is remote BUG=151718 TEST=see bug Review URL: https://codereview.chromium.org/11047012 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@160489 0039d316-1c4b-4281-b951-d872f2087c98
* Additional verification logic in unit tests for fullscreen controller.scheib@chromium.org2012-10-053-2/+21
| | | | | | | | | BUG=146666 Review URL: https://chromiumcodereview.appspot.com/11068024 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@160487 0039d316-1c4b-4281-b951-d872f2087c98
* Make incognito guy face right.saintlou@chromium.org2012-10-054-0/+0
| | | | | | | | | BUG=151554 TBR=sky@chromium.org Review URL: https://codereview.chromium.org/11028072 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@160486 0039d316-1c4b-4281-b951-d872f2087c98
* Add SampleMap and use it in SparseHistogramkaiwang@chromium.org2012-10-0512-35/+337
| | | | | | | | | BUG=139612 Review URL: https://chromiumcodereview.appspot.com/11022002 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@160485 0039d316-1c4b-4281-b951-d872f2087c98
* Revert 160454 - Port three nacl_integration tests to browser_tests.sky@chromium.org2012-10-0519-99/+136
| | | | | | | | | | | | | | | | * ppapi_geturl * ppapi_ppb_dev * ppapi_ppp_instance BUG= http://code.google.com/p/nativeclient/issues/detail?id=2959 Review URL: https://chromiumcodereview.appspot.com/11035048 TBR=ncbray@chromium.org Review URL: https://codereview.chromium.org/11026079 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@160484 0039d316-1c4b-4281-b951-d872f2087c98
* Update .DEPS.gitchrome-admin@google.com2012-10-051-1/+1
| | | | git-svn-id: svn://svn.chromium.org/chrome/trunk/src@160483 0039d316-1c4b-4281-b951-d872f2087c98
* Update swarm_client @ 160474.maruel@chromium.org2012-10-051-1/+1
| | | | | | | | | | | TBR=csharp@chromium.org NOTRY=true BUG= Review URL: https://chromiumcodereview.appspot.com/11038073 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@160482 0039d316-1c4b-4281-b951-d872f2087c98
* Centralizes a couple uses of ui::GetScaleFactorForScale(). pkotwicz@chromium.org2012-10-0511-61/+59
| | | | | | | | | | | | BUG=None Test=Compiles R=oshima TBR=jam Review URL: https://chromiumcodereview.appspot.com/10993008 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@160481 0039d316-1c4b-4281-b951-d872f2087c98
* Disable extension DLL mitigationjschuh@chromium.org2012-10-051-1/+0
| | | | | | | | | This is failing on early Win8 betas, and we probably want to investigate the value of it a bit more before re-enabling. BUG=153399 Review URL: https://codereview.chromium.org/11068026 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@160480 0039d316-1c4b-4281-b951-d872f2087c98
* Make ninja + clang + goma workmichaelbai@google.com2012-10-051-7/+21
| | | | | | | | BUG= Review URL: https://codereview.chromium.org/11065040 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@160479 0039d316-1c4b-4281-b951-d872f2087c98
* Upstream Chrome for Android's KeyUtils, TouchUtils and UiUtils.klundberg@chromium.org2012-10-053-0/+400
| | | | | | | | | BUG=154141 Review URL: https://chromiumcodereview.appspot.com/11038048 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@160478 0039d316-1c4b-4281-b951-d872f2087c98
* Initializes and cleans up PrimaryDisplaySwitchObserver in ↵mukai@chromium.org2012-10-056-52/+85
| | | | | | | | | | | | | chrome_browser_main_chromeos rather than in display_preferences. display_preferences' RegisterDisplayPrefs can be called in unit_tests or some others and it may cause memory leaks due to mishandling of observer methods. Since this observer is necessary only in a real browser process, I just move it to chrome_browser_main_chromeos. BUG=None Review URL: https://chromiumcodereview.appspot.com/11036049 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@160477 0039d316-1c4b-4281-b951-d872f2087c98
* Unit test for Default app installationgrv@chromium.org2012-10-051-0/+42
| | | | | | | | | | | | The unit test tests, if the default apps is installed correctly or not. BUG=138614 Review URL: https://chromiumcodereview.appspot.com/10910258 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@160476 0039d316-1c4b-4281-b951-d872f2087c98
* Revert 160434 - Keep track of which transport DIBs are currently in the X ↵sky@chromium.org2012-10-054-54/+7
| | | | | | | | | | | | | | | | | | servers queue Since X11 is asynchronous, there might be operations on the shared memory pending. If we unmap the shared memory immediately, the queued operations will make the renderer crash. This can happen if a renderer is brought up, renderers a single frame, and is immediately destroyed again. BUG=143580 TEST=running layout tests using content shell doesn't crash constantly Review URL: https://chromiumcodereview.appspot.com/11014018 TBR=jochen@chromium.org Review URL: https://codereview.chromium.org/11028071 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@160475 0039d316-1c4b-4281-b951-d872f2087c98
* Revert 160448 - Changed text for blocked NaCl plugins and replacement HTML ↵sky@chromium.org2012-10-052-7/+2
| | | | | | | | | | | | | | | behaviour. BUG=154110 TEST=check the new UI on machines where NaCl isn't supported Review URL: https://chromiumcodereview.appspot.com/11027042 TBR=zelidrag@chromium.org Review URL: https://codereview.chromium.org/11030058 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@160473 0039d316-1c4b-4281-b951-d872f2087c98
* Update .DEPS.gitchrome-admin@google.com2012-10-051-1/+1
| | | | git-svn-id: svn://svn.chromium.org/chrome/trunk/src@160472 0039d316-1c4b-4281-b951-d872f2087c98
* Rename .swarm to .isolated, as done in r160469.maruel@chromium.org2012-10-055-6/+6
| | | | | | | | | | TBR=csharp@chromium.org NOTRY=true BUG= Review URL: https://codereview.chromium.org/11029063 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@160471 0039d316-1c4b-4281-b951-d872f2087c98
* A couple small fixes in preparation for recording a top_25 archive.tonyg@chromium.org2012-10-053-9/+10
| | | | | | | | | | | | | | | 1. For linkedin, use a more interesting page than the login page. 2. Fix return value in LoginNeeded() so that pages after the initial credential page will load. Also fix up missing archive warning to match missing credential warning. BUG=None TEST=None Review URL: https://codereview.chromium.org/11030057 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@160468 0039d316-1c4b-4281-b951-d872f2087c98
* Log the number of windows open on each pageload.stevet@chromium.org2012-10-051-1/+24
| | | | | | | | | | BUG=None TEST=Start chrome and go to about:histograms. Ensure that Tabs.WindowCountPerLoad has a value logged. Review URL: https://chromiumcodereview.appspot.com/11013032 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@160467 0039d316-1c4b-4281-b951-d872f2087c98
* Fix crash in OneClickSignIn unittest on Aura builds.jam@chromium.org2012-10-051-36/+30
| | | | | | Review URL: https://codereview.chromium.org/11033056 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@160465 0039d316-1c4b-4281-b951-d872f2087c98
* Add pfeldman to content\shell OWNERS.jam@chromium.org2012-10-051-0/+1
| | | | | | Review URL: https://codereview.chromium.org/11029053 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@160464 0039d316-1c4b-4281-b951-d872f2087c98
* Contain transient children in the same root window as the DNWA. This allows ↵ben@chromium.org2012-10-0513-19/+55
| | | | | | | | | | us to side-step the problem of getting layered windows to work, and makes wicked-cool effects on transients straightforward. BUG=none R=scottmg@chromium.org Review URL: https://codereview.chromium.org/11029036 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@160463 0039d316-1c4b-4281-b951-d872f2087c98
* Layered windows don't work with Aura right now so I've disabled them so ↵ben@chromium.org2012-10-051-0/+3
| | | | | | | | | | things like the status bubble and omnibox popup show up again. http://crbug.com/154069 R=scottmg@chromium.org Review URL: https://codereview.chromium.org/11032036 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@160462 0039d316-1c4b-4281-b951-d872f2087c98
* ContentShell would break in release mode because of a call to retrieve a pathjcivelli@chromium.org2012-10-052-1/+8
| | | | | | | | | | | | | | | made in a DCHECK, and therefore compiled out in release mode. Interestingly the content shell would be happy without that file, but given how a previous CL changed the way we pass file descriptors to the created process, it now caused problems. BUG=None TEST=Content shell should work in release mode. Review URL: https://chromiumcodereview.appspot.com/10991070 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@160459 0039d316-1c4b-4281-b951-d872f2087c98
* Remove RootWindow reference from DragDropTracker. RootWindow reference invarunjain@chromium.org2012-10-054-40/+42
| | | | | | | | | | | | DragDropTracker seems unnecessary. After this change, the capture_window will be parented to the currently active RootWindow which seems fine. BUG=none Review URL: https://chromiumcodereview.appspot.com/11031026 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@160457 0039d316-1c4b-4281-b951-d872f2087c98
* Update expectationsrtenneti@google.com2012-10-051-1/+1
| | | | | | | | | | linux-release/intl1/times: http://build.chromium.org/f/chromium/perf/linux-release/intl1/report.html?history=50&rev=160431 BUG=154356 TBR=cmp Review URL: https://codereview.chromium.org/11068028 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@160456 0039d316-1c4b-4281-b951-d872f2087c98
* Update svn:ignore and .gitignore.maruel@chromium.org2012-10-051-0/+2
| | | | | | | No code change. git-svn-id: svn://svn.chromium.org/chrome/trunk/src@160455 0039d316-1c4b-4281-b951-d872f2087c98
* Port three nacl_integration tests to browser_tests.ncbray@chromium.org2012-10-0519-136/+99
| | | | | | | | | | | | | * ppapi_geturl * ppapi_ppb_dev * ppapi_ppp_instance BUG= http://code.google.com/p/nativeclient/issues/detail?id=2959 Review URL: https://chromiumcodereview.appspot.com/11035048 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@160454 0039d316-1c4b-4281-b951-d872f2087c98
* Reduce time between calls to fetch promo json from 12 hours to 6 hours.achuith@chromium.org2012-10-051-2/+3
| | | | | | | | BUG= Review URL: https://chromiumcodereview.appspot.com/11043034 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@160451 0039d316-1c4b-4281-b951-d872f2087c98
* [MediaGallery] Rename MediaDeviceDelegate* to MtpDeviceDelegate*.kmadhusu@chromium.org2012-10-0515-173/+171
| | | | | | | | | | | | | | | | | | | "media_device_*" is so generic. Make it media transfer protocol (mtp) device specific. Renamed (1) ScopedMediaDeviceMapEntry class => ScopedMtpDeviceMapEntry class (2) MediaDeviceDelegate* class => MtpDeviceDelegate* class (3) MediaDeviceMapService class=> MtpDeviceMapService class (4) SUPPORT_MEDIA_FILESYSTEM => SUPPORT_MTP_DEVICE_FILESYSTEM. and updated all the references. BUG=148972 TEST=none TBR=thestig@chromium.org Review URL: https://chromiumcodereview.appspot.com/11027022 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@160450 0039d316-1c4b-4281-b951-d872f2087c98
* ash: Add tests for desktop background, fix namesjamescook@chromium.org2012-10-0511-72/+276
| | | | | | | | | | | | | | | | | | * Add basic unit tests for DesktopBackgroundController * Add test for race condition between Chrome OS resume from sleep/wallpaper refresh and screen unlock. See bug. * Rename ComponentWrapper class to AnimatingDesktopController * Rename kComponentWrapper key to kAnimatingDesktopController * Rename kWindowDesktopComponent key to kDesktopController * Fix lots of component vs. controller names BUG=149043 TEST=added DesktopBackgroundControllerTest.* Review URL: https://chromiumcodereview.appspot.com/11026047 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@160449 0039d316-1c4b-4281-b951-d872f2087c98
* Changed text for blocked NaCl plugins and replacement HTML behaviour.zelidrag@chromium.org2012-10-052-2/+7
| | | | | | | | | | BUG=154110 TEST=check the new UI on machines where NaCl isn't supported Review URL: https://chromiumcodereview.appspot.com/11027042 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@160448 0039d316-1c4b-4281-b951-d872f2087c98
* Fix crash when pressing Allow on GTK fullscreen exit bubble.scheib@chromium.org2012-10-052-1/+2
| | | | | | | | | | | | Calling Allow on the base class results in the bubble being destroyed by the fullscreen controller. An update is never needed, as the bubble will always be destroyed. The crash was rare as update did not usually do anything crashy on the zombie memory; but in this bug's scenario it failed in GURL copies. BUG=154134 Review URL: https://chromiumcodereview.appspot.com/11029034 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@160445 0039d316-1c4b-4281-b951-d872f2087c98
* Update expectations.rtenneti@google.com2012-10-051-4/+4
| | | | | | | | | | | | | xp-release-dual-core/moz/total_byte_r/IO_r: http://build.chromium.org/f/chromium/perf/xp-release-dual-core/moz/report.html?history=50&rev=160388&graph=total_byte_r xp-release-dual-core/moz/total_op_b/IO_op_b: http://build.chromium.org/f/chromium/perf/xp-release-dual-core/moz/report.html?history=50&rev=160388&graph=total_op_b xp-release-dual-core/moz/total_op_r/IO_op_r: http://build.chromium.org/f/chromium/perf/xp-release-dual-core/moz/report.html?history=50&rev=160388&graph=total_op_r xp-release-dual-core/moz/vm_peak_b/vm_pk_b: http://build.chromium.org/f/chromium/perf/xp-release-dual-core/moz/report.html?history=50&rev=160388&graph=vm_peak_b BUG=154345 TBR=cmp Review URL: https://codereview.chromium.org/11033059 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@160444 0039d316-1c4b-4281-b951-d872f2087c98
* [Mac] During shutdown, do not post NSApplicationWillTerminateNotification twice.rsesek@chromium.org2012-10-052-8/+36
| | | | | | | | | | | | | | | | | | | | | | In the quit path where zero browser windows are open, -[BrowserCrApplication terminate:] was posting NSApplicationWillTerminateNotification twice, via the stacks pasted on the bug. Some system code assumes that after posting this notification, _exit() will be called and so it does not bother removing itself as an observer, which leads to a shutdown crash. This change makes it so that browser::HandleAppExitingForPlatform() is responsible for posting the notification. That function is called via browser::OnAppExiting(), which is the final step in the cross-platform shutdown code. At that time, all browsers have been closed and shutdown cannot be aborted, so this should only ever be called once. BUG=153283 TEST=Prayer and a sacrificial goat. Review URL: https://codereview.chromium.org/11066035 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@160443 0039d316-1c4b-4281-b951-d872f2087c98
* Make install.sh call lsregister more like .keystone_install. Don't touch themark@chromium.org2012-10-052-7/+9
| | | | | | | | | | | app, since it shouldn't have existed previously. Use lsregister -f to guard against LaunchServices having discovered the app before the copy completed in preference to touch and lsregister. Review URL: https://chromiumcodereview.appspot.com/11033033 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@160442 0039d316-1c4b-4281-b951-d872f2087c98