summaryrefslogtreecommitdiffstats
Commit message (Collapse)AuthorAgeFilesLines
* Update .DEPS.gitchrome-admin@google.com2012-11-021-3/+3
| | | | git-svn-id: svn://svn.chromium.org/chrome/trunk/src@165661 0039d316-1c4b-4281-b951-d872f2087c98
* Roll Skia DEPS to r6257robertphillips@google.com2012-11-021-1/+1
| | | | | | | control: http://codereview.chromium.org/11293049/ Review URL: https://codereview.chromium.org/11361048 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@165660 0039d316-1c4b-4281-b951-d872f2087c98
* Remove unnecessary virtual declarations from ScopedUserPrefUpdate and add ↵bauerb@chromium.org2012-11-023-8/+11
| | | | | | | | | | | OVERRIDE when they are overridden. BUG=none Review URL: https://chromiumcodereview.appspot.com/11338006 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@165659 0039d316-1c4b-4281-b951-d872f2087c98
* Plumbing for LocalChangeObserverkinuko@chromium.org2012-11-029-10/+260
| | | | | | | | | | | This is a bit awkward as the sync/change status is kept on IO thread while changes are recorded on FILE thread, but should work. BUG=156599 TEST=LocalFileSyncServiceTest.LocalChangeObserver\* Review URL: https://codereview.chromium.org/11365032 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@165658 0039d316-1c4b-4281-b951-d872f2087c98
* Extended javascript api to provide list of changed files within a watched ↵mtomasz@chromium.org2012-11-0210-44/+72
| | | | | | | | | | | | | directory. This patch introduces a list of changed files to FileWatchEvent with a type of the change for each of such files. BUG=157834 Review URL: https://chromiumcodereview.appspot.com/11364023 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@165657 0039d316-1c4b-4281-b951-d872f2087c98
* DevTools: [remote debugging] emit Inspector.detached protocol message upon ↵pfeldman@chromium.org2012-11-0212-36/+44
| | | | | | | | | connectin termination. BUG=129539 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@165656 0039d316-1c4b-4281-b951-d872f2087c98
* Fix: commit pending sessionStorage changes at shutdown.marja@chromium.org2012-11-024-17/+10
| | | | | | | | | BUG=156444 Review URL: https://chromiumcodereview.appspot.com/11362005 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@165655 0039d316-1c4b-4281-b951-d872f2087c98
* UNhandled error logging in File Copy Manager.serya@chromium.org2012-11-021-0/+4
| | | | | | | | | | BUG= TEST=Injected tested code throwing an unhandled exception. Review URL: https://chromiumcodereview.appspot.com/11358032 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@165654 0039d316-1c4b-4281-b951-d872f2087c98
* Disabled WorkspaceWindowResizerTest.Edge since it got broken by ↵phoglund@chromium.org2012-11-021-1/+3
| | | | | | | | | | | | | https://chromiumcodereview.appspot.com/11369017. NOTRY=True TBR=oshima@chromium.org BUG=none Review URL: https://chromiumcodereview.appspot.com/11365063 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@165653 0039d316-1c4b-4281-b951-d872f2087c98
* Build ASan Android runtime when updating Clang.eugenis@chromium.org2012-11-021-0/+38
| | | | | | | | | | BUG=137569 TEST=none R=thakis@chromium.org Review URL: https://codereview.chromium.org/10987050 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@165652 0039d316-1c4b-4281-b951-d872f2087c98
* Updating trunk VERSION from 1315.0 to 1316.0chrome-release@google.com2012-11-021-1/+1
| | | | git-svn-id: svn://svn.chromium.org/chrome/trunk/src@165649 0039d316-1c4b-4281-b951-d872f2087c98
* Update .DEPS.gitchrome-admin@google.com2012-11-021-2/+2
| | | | git-svn-id: svn://svn.chromium.org/chrome/trunk/src@165647 0039d316-1c4b-4281-b951-d872f2087c98
* WebKit roll 133190:133191 (because I needed 133191)pfeldman@chromium.org2012-11-021-1/+1
| | | | git-svn-id: svn://svn.chromium.org/chrome/trunk/src@165646 0039d316-1c4b-4281-b951-d872f2087c98
* When accepted_languages are "en-US" and "en", shinyak@chromium.org2012-11-025-29/+110
| | | | | | | | | | | | | a dictionary for "en-AU" is used for accepted language "en". To be consistent with language preference page, languages only available in spellchecker are shown. BUG=84802 TEST=SpellCheckHostTest.* Review URL: https://chromiumcodereview.appspot.com/11301035 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@165645 0039d316-1c4b-4281-b951-d872f2087c98
* Fixes a wrong assumption that the secondary display is indexed by 1.mukai@chromium.org2012-11-021-8/+3
| | | | | | | | | | | Probably the code is kinda old and didn't use a proper method... BUG=158593 Review URL: https://chromiumcodereview.appspot.com/11365058 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@165644 0039d316-1c4b-4281-b951-d872f2087c98
* Implement LocalFileChangeTracker::GetNextChangedURLs for local synckinuko@chromium.org2012-11-0211-153/+296
| | | | | | | | | | | | | | | | This change includes: - record changes with time-based sequence numbers (as well as changestamps) so that we can mildly prioritize older changes for local sync - add GetNextChangedURLs() which returns changes in last-modified-time order - cleanup some existing methods in LocalFileChangeTracker - fix destruction order BUG=156599 TEST=LocalFileChangeTrackerTest.Changes, LocalFileChangeTrackerTest.NextChangedURLs* Review URL: https://codereview.chromium.org/11362026 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@165643 0039d316-1c4b-4281-b951-d872f2087c98
* Rename DriveServiceInterface::CreateDirectory to AddNewDirectory to avoid ↵tzik@chromium.org2012-11-0210-12/+13
| | | | | | | | | | | hitting the macro on Windows. BUG=159085 Review URL: https://chromiumcodereview.appspot.com/11361054 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@165642 0039d316-1c4b-4281-b951-d872f2087c98
* Call dbus_bus_register at the beginning of connection.nona@chromium.org2012-11-021-0/+13
| | | | | | | | | | | | | | | According to dbus specification in "Message Bus Messages" section (http://dbus.freedesktop.org/doc/dbus-specification.html), "Before an application is able to send messages to other applications it must send the org.freedesktop.DBus.Hello message to the message bus to obtain a unique name. " To meets this specification, we should call dbus_bus_register function which call org.freedesktop.DBus.Hello. For the dbus session or system bus, this function is called in dbus_bus_get function. BUG=159088 TEST=ran dbus_unittests Review URL: https://chromiumcodereview.appspot.com/11312036 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@165641 0039d316-1c4b-4281-b951-d872f2087c98
* drive: Add root directory information to chrome:drive-internals.kinaba@chromium.org2012-11-021-0/+24
| | | | | | | | | | | | | | | The root entry is not supposed to vary often, but I suspect some corruption is happening in the case of the associated bug. It would be good to have the info on the debug console page. BUG=159087 TEST=Open chrome:drive-internals and verify "File System Contents" section shows the information of "drive" entry. Review URL: https://chromiumcodereview.appspot.com/11369044 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@165640 0039d316-1c4b-4281-b951-d872f2087c98
* [MediaGallery] Cleanup: Rename MtpDeviceDelegate* to MTPDeviceDelegate*.kmadhusu@chromium.org2012-11-0210-120/+123
| | | | | | | | | | | | Rename all function/class names to use "MTP" instead of "mtp" BUG=none TEST=none TBR=kinuko Review URL: https://chromiumcodereview.appspot.com/11364042 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@165639 0039d316-1c4b-4281-b951-d872f2087c98
* Don't return NULL from AudioManager:GetMessageLoop()dalecurtis@chromium.org2012-11-021-4/+1
| | | | | | | | | | | | | | | | | | Returning NULL leads to a bunch of hairy corner cases where other clients on the audio thread need to constantly check if the message loop is still valid. Returning NULL from GetMessageLoop seems to be a relic from the past, so for don't do it anymore. If we see browser shutdown hangs in the field we can revert and consider alternate solutions. BUG=157957 TEST=all tests still pass. Review URL: https://chromiumcodereview.appspot.com/11348016 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@165638 0039d316-1c4b-4281-b951-d872f2087c98
* Fixed setting focus in settings' popups.mtomasz@chromium.org2012-11-021-0/+24
| | | | | | | | | | | | | | This patch fixes a bug, when opening popups in Settings page and not updating focus. The problem was especially significant when ChromeVox was enabled. With this patch, focus is set to the first focusable control in a popup. This is now default behavior, which can be overriden though, to focus any another control. TEST=1. Enter Settings, 2. Go to show 'advanced settings' using tab and enter keys, 3. Enter Content Settings using enter key. BUG=158884 Review URL: https://chromiumcodereview.appspot.com/11363030 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@165637 0039d316-1c4b-4281-b951-d872f2087c98
* Temporarily disable PluginTest.OpenPopupWindowWithPluginjam@chromium.org2012-11-021-1/+1
| | | | git-svn-id: svn://svn.chromium.org/chrome/trunk/src@165636 0039d316-1c4b-4281-b951-d872f2087c98
* Mock quota for syncable file system now that ↵calvinlo@chromium.org2012-11-022-3/+14
| | | | | | | | | | | http://code.google.com/p/chromium/issues/detail?id=155242 has landed. BUG=153501 Review URL: https://chromiumcodereview.appspot.com/11348029 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@165635 0039d316-1c4b-4281-b951-d872f2087c98
* Use extensions socket permission for TCP/UDP socket APIs in Pepperdpolukhin@chromium.org2012-11-0222-205/+290
| | | | | | | | | | | | | | This CL is first step in removing whitelist of extensions. It makes permission check same as extensions do. BUG=124311 TEST=browser_tests for TCP/UDP Committed: http://src.chromium.org/viewvc/chrome?view=rev&revision=165376 Review URL: https://codereview.chromium.org/10993078 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@165634 0039d316-1c4b-4281-b951-d872f2087c98
* Add TestInterface methods for adding shill stub devices and servicesstevenjb@chromium.org2012-11-0211-72/+443
| | | | | | | | | | | | This will help write functional tests for network handlers written on top of the Shill client code. BUG=154072 TEST=NetworkSmsHandlerTest.SmsHandlerDbusStub passes Review URL: https://chromiumcodereview.appspot.com/11365022 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@165633 0039d316-1c4b-4281-b951-d872f2087c98
* cc: Avoid using upload term in relation to resources.reveman@chromium.org2012-11-029-23/+23
| | | | | | | | | | | | | Rename ResourceProvider::upload() to ResourceProvider::setPixels() and PrioritizedTexture::upload() to PrioritizedTexture::setPixels(). BUG= TEST=cc_unittests Review URL: https://chromiumcodereview.appspot.com/11368043 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@165632 0039d316-1c4b-4281-b951-d872f2087c98
* Stop passing the parent hwnd to the plugin process on initialization.jam@chromium.org2012-11-0215-118/+124
| | | | | | | | | | | This was only used on Windows. Windowed plugins get reparented in the browser anyways, so just creat it initially parented to the desktop (it's hidden then). For windowless plugins, made the plugin process watch WM_WINDOWPOSCHANGING for the dummy window used for activation so that it can update the value used for NPNVnetscapeWindow. I've verified that the subtle code that was added to make IMEs work correctly still functions. This is a followup to r165373 and is another step in getting rid of the parent hwnd in the renderer, which doesn't work in Aura anymore since it changes when a tab drag to a new window occurs. Review URL: https://codereview.chromium.org/11362045 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@165631 0039d316-1c4b-4281-b951-d872f2087c98
* add quotes around -stderr_mask 12 for browser wrapperzhaoqin@google.com2012-11-021-1/+1
| | | | | | | | | TBR=bruening@chromium.org Review URL: https://chromiumcodereview.appspot.com/11364041 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@165630 0039d316-1c4b-4281-b951-d872f2087c98
* Calls default window procedure for WM_KILLFOCUS.nona@chromium.org2012-11-021-0/+1
| | | | | | | | | | | Without default window procedure, the actual focus does not change correctly. BUG=158562 TEST=Manually done Review URL: https://chromiumcodereview.appspot.com/11365028 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@165629 0039d316-1c4b-4281-b951-d872f2087c98
* Add the "file_handlers" manifest key for platform apps to replace "intents".jeremya@chromium.org2012-11-0215-59/+114
| | | | | | | | | | | | This patch just adds a synonym for the "intents" functionality, but the eventual intention is to remove the intents code from extensions altogether. R=benwells@chromium.org,jhawkins@chromium.org Review URL: https://chromiumcodereview.appspot.com/11360026 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@165628 0039d316-1c4b-4281-b951-d872f2087c98
* Check native is initialized before sending VSync updates.tedchoc@chromium.org2012-11-021-1/+3
| | | | | | | | | | R=jcivelli@chromium.org,klobag@chromium.org BUG= Review URL: https://chromiumcodereview.appspot.com/11364039 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@165627 0039d316-1c4b-4281-b951-d872f2087c98
* Add IDC_BOOKMARK_PAGE_FROM_STAR for user action metricsyosin@chromium.org2012-11-026-6/+13
| | | | | | | | | | | | | | This patch is for counting star icon click followed by the bookmark prompt. This patch is a part of "Bookmark Prompt Experiment" found in http://codereview.chromium.org/11028114/ BUG=144586 TEST=no user visible change Review URL: https://chromiumcodereview.appspot.com/11358006 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@165626 0039d316-1c4b-4281-b951-d872f2087c98
* Encrypted Media: Add TRACE_EVENT to trace eme implementation performance.xhwang@chromium.org2012-11-024-1/+18
| | | | | | | | | | | | | This CL adds TRACE_EVENT for video decrypt-and-decode path only. If needed, we could do the same for decrypt-only and/or audio. TBR=dmichael@chromium.org BUG=158981 TEST=goto chrome://tracing, record/stop, choose only "eme" in "Category", and enjoy. Review URL: https://chromiumcodereview.appspot.com/11360042 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@165625 0039d316-1c4b-4281-b951-d872f2087c98
* Disable unit_tests on Dr. Memory botbruening@google.com2012-11-021-0/+2
| | | | | | | | | BUG=157132 TBR=rnk@google.com Review URL: https://codereview.chromium.org/11362057 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@165624 0039d316-1c4b-4281-b951-d872f2087c98
* webkit: Fix BlobURLRequestJobTest flakinesshashimoto@chromium.org2012-11-021-4/+0
| | | | | | | | | | | A redandunt WriteFile was causing modification time unmatch error only on slow environment. BUG=None TEST=content_tests --gtest_filter="BlobURLRequestJobTest.*" Review URL: https://codereview.chromium.org/11312057 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@165623 0039d316-1c4b-4281-b951-d872f2087c98
* Enable gpu crash tests in contentyongsheng.zhu@intel.com2012-11-026-2/+81
| | | | | | | | | | | | Use content and content shell for gpu crash tests BUG= TEST=content_browsertests Review URL: https://chromiumcodereview.appspot.com/10984040 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@165622 0039d316-1c4b-4281-b951-d872f2087c98
* output_configurator: Re-add DPMS call.marcheu@chromium.org2012-11-021-1/+6
| | | | | | | | | | | | | | | | Removing those regresses idle suspend. Until we decide how to fix it properly, let's add it back. Let's also add a message to explain the use for that code so others don't fall into the same trap. BUG=none TEST=by hand, idle suspend/resume now works Change-Id: I29c0a7f065ffbef2f8bbef148bd2fb1f0a3ebea8 Review URL: https://chromiumcodereview.appspot.com/11293056 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@165621 0039d316-1c4b-4281-b951-d872f2087c98
* drive: Split update of "Account Metadata" into remote and local parts.kinaba@chromium.org2012-11-023-18/+37
| | | | | | | | | | | | | Otherwise, we cannot see the local metadata information until we get online and connected to the remote server. BUG=158010 TEST=Open chrome:drive-internals and verify local changestamp is shown earlier than remote timestamp. Review URL: https://chromiumcodereview.appspot.com/11275095 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@165620 0039d316-1c4b-4281-b951-d872f2087c98
* Implement audio/video sync instrumentation for WebRTChclam@chromium.org2012-11-028-17/+176
| | | | | | | | | | | | | | | | Draw a sweeping circle animation and elapsed time in the fake video stream. Combined with a synchronized beep sound in the fake audio stream. Tested local-to-local PeerConnection to show that audio/video are in sync. BUG=159053 Review URL: https://chromiumcodereview.appspot.com/11358018 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@165619 0039d316-1c4b-4281-b951-d872f2087c98
* File Manager: Add a method to reload the file system metadata from the server.yoshiki@chromium.org2012-11-025-0/+38
| | | | | | | | | | | | | On pressing Alt-Shift-R, File Manager re-fetch the metadata of the drive. This patch is the UI part of 2 patches. C++ part is already committed as http://crrev.com/164307. BUG=155478 TEST=manual Review URL: https://chromiumcodereview.appspot.com/11302002 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@165618 0039d316-1c4b-4281-b951-d872f2087c98
* Clean up memory manager's context tracking structures.ccameron@chromium.org2012-11-026-163/+157
| | | | | | | | | | | | | | | | | | | | | | | | | | | | This change should not change any behavior. Use GetMemoryTracker and comparisons instead of IsInSameContextShareGroup to determine if two stubs should be counted as being in the same group. Simplify the logic in GpuMemoryManager::Manage() use an O(log n) lookup based on memory tracker instead of an O(n) lookup based on stub context group to determine if two stubs are in the same context group. Fix a number of places in the memory manager unit test where "is in the same context group as" was assumed not to be an equivalence relation (now that the lookup is based on memory tracker, it is an equivalence relation). Add memory tracking to the memory manager unit test (so that we can simulate unmanaged memory, e.g, WebGL, entering the mix). Clean up the memory manager unit test to use a common base class for the two stub classes. BUG=134750 Review URL: https://chromiumcodereview.appspot.com/11361050 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@165617 0039d316-1c4b-4281-b951-d872f2087c98
* Add OWNERS to ui/message_centerstevenjb@chromium.org2012-11-021-0/+2
| | | | | | | | | BUG=none Review URL: https://chromiumcodereview.appspot.com/11359028 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@165616 0039d316-1c4b-4281-b951-d872f2087c98
* Flash Mac: Fix escape to exit fullscreensail@chromium.org2012-11-025-15/+92
| | | | | | | | | | | | | | | On tmz.com, pressing escape to exit fullscreen Flash would cause the currently playing movie to close. The problem was that the fullscreen window was closing on a key down event and the key up event was going to the parent site. My fix is to suppress the key up event on the parent view. BUG=155492 Review URL: https://chromiumcodereview.appspot.com/11188027 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@165615 0039d316-1c4b-4281-b951-d872f2087c98
* chromeos: Remove the auto_connect argument from ConnectToNetworkAt() function.tfarina@chromium.org2012-11-021-13/+3
| | | | | | | | | R=stevenjb@chromium.org Review URL: https://chromiumcodereview.appspot.com/11369037 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@165614 0039d316-1c4b-4281-b951-d872f2087c98
* Allow IDL schemas to have comments on callback functionscduvall@chromium.org2012-11-024-7/+40
| | | | | | | | | | | The JSON schema compiler was ignoring comments on callback functions. Now callback functions and their parameters can have comments. BUG=158459 Review URL: https://chromiumcodereview.appspot.com/11342033 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@165613 0039d316-1c4b-4281-b951-d872f2087c98
* Revert 165605 - Fix branding in chromoting string resources.hbono@chromium.org2012-11-028-166/+265
| | | | | | | | | | | | | | | | | When chromoting resources were converted from messages.json to .grd format incorrect branding was used. Beside that simplified how resources are generated: 1. Now <if> is used to handle branded strings instead of generating grd file in build time 2. Removed resource_ids - ids are now specified in grd files. BUG=158995 Review URL: https://chromiumcodereview.appspot.com/11275101 TBR=sergeyu@chromium.org Review URL: https://codereview.chromium.org/11359035 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@165611 0039d316-1c4b-4281-b951-d872f2087c98
* Disable some jingle unittests on vs2012scottmg@chromium.org2012-11-021-0/+4
| | | | | | | | | | | | Appears to be invalid iterator usage. R=akalin@chromium.org BUG=158570 Review URL: https://chromiumcodereview.appspot.com/11338050 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@165610 0039d316-1c4b-4281-b951-d872f2087c98
* Exclude unused files for Android.shashishekhar@chromium.org2012-11-021-0/+5
| | | | | | | | | | These files are not used by Android. BUG=157226 Review URL: https://chromiumcodereview.appspot.com/11293050 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@165609 0039d316-1c4b-4281-b951-d872f2087c98
* Don't assert if PluginInstance can't get PPP_Combined. Some tests exercise ↵bbudge@chromium.org2012-11-025-10/+7
| | | | | | | | | | | this path. BUG=116317 TEST=nacl_integration Review URL: https://chromiumcodereview.appspot.com/11367043 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@165608 0039d316-1c4b-4281-b951-d872f2087c98