- 23 Aug, 2014 40 commits
-
-
sgurun authored
BUG=406854 Bug: b/17177684 Enabling channel ID causes problems for apps that use multiple network stacks (such as httpurlconnection and webview) or multiple webviews and want to share cookies. Disable until we provide some solution. Review URL: https://codereview.chromium.org/497963002 Cr-Commit-Position: refs/heads/master@{#291610}
-
thestig authored
Review URL: https://codereview.chromium.org/497083004 Cr-Commit-Position: refs/heads/master@{#291609}
-
danakj authored
We used to test the state of the occlusion tracker by making queries for various input rects to try and guess what its occlusion state must be. This is bad. Instead, we can query the state directly. This removes all state queries from tests that are verifying the occlusion tracker's internal state changes correctly. And adds some new tests that just set internal state and verify the query methods work correctly. R=enne Review URL: https://codereview.chromium.org/497493004 Cr-Commit-Position: refs/heads/master@{#291608}
-
derat authored
Also fix a dependency issue in chromeos_test_support_without_gmock, make ExtensionsTestSuite call GLSurface::InitializeOneOffForTests(), and avoid double-initializating Aura in app_shell. BUG=405967 Review URL: https://codereview.chromium.org/468393005 Cr-Commit-Position: refs/heads/master@{#291607}
-
bbudge authored
Add 'Initialize' method that takes an enum value to specify hardware acceleration policy. Policies are always, with fallback and only software. BUG=406194 Review URL: https://codereview.chromium.org/496203002 Cr-Commit-Position: refs/heads/master@{#291606}
-
jbauman authored
When a frame is queued on a surface, a callback can queued that will be called when that surface is used to draw a frame. This can be used to create backpressure on renderers or the browser compositor. BUG= Review URL: https://codereview.chromium.org/465673003 Cr-Commit-Position: refs/heads/master@{#291605}
-
danakj authored
When PictureLayerImpl chooses a scale to raster at, we should accept tiles at that scale as complete, and not try wait for tiles at some other scale to be filled in. Such a tiling may not even exist. R=enne, vmpstr BUG=406433 Review URL: https://codereview.chromium.org/484363003 Cr-Commit-Position: refs/heads/master@{#291604}
-
kmadhusu authored
Have TabAndroid to implement the SearchTabHelperDelegate interface to provide the necessary functionality to SearchTabHelper. This will allow us to turn off search term replacement (by updating the location bar displayed url) when the underlying page doesn't support embedded search. Server side bug: b/17140979 BUG=none TEST=none Review URL: https://codereview.chromium.org/488093003 Cr-Commit-Position: refs/heads/master@{#291603}
-
jrummell authored
With the recent EME spec changes, ReleaseSession() got replaced by CloseSession() and RemoveSession(). Until all the changes to support both methods are in place, calls to ReleaseSession() should call RemoveSession() in order for existing prefixed EME applications to continue to work. Unprefixed Close() calls now call RemoveSession(), and thus don't do the correct thing. This will be fixed when both CloseSession() and RemoveSession() are passed through Pepper. BUG=406606 TEST=All EME browser_tests pass Review URL: https://codereview.chromium.org/497153005 Cr-Commit-Position: refs/heads/master@{#291602}
-
thestig authored
Review URL: https://codereview.chromium.org/502593003 Cr-Commit-Position: refs/heads/master@{#291601}
-
jamescook authored
The menu model needs to be cleaned up if the menu is suppressed for being too short. BUG=406609 TEST=manual, see bug Review URL: https://codereview.chromium.org/486193004 Cr-Commit-Position: refs/heads/master@{#291600}
-
rouslan authored
BUG=402207 Review URL: https://codereview.chromium.org/490373002 Cr-Commit-Position: refs/heads/master@{#291599}
-
noms authored
In the new profile management world, you can find yourself using a super old profile named by default "Default Profile". These names should be migrated to the new style default names ("Person 1"). The code is fantastically special because the ProfileInfoCache re-sorts itself after each rename, so doing a batch rename is really not a thing it wants to do. BUG=406409 Review URL: https://codereview.chromium.org/490363002 Cr-Commit-Position: refs/heads/master@{#291598}
-
amistry authored
Based on the hotword extension, but heavily modified. BUG=397019 Review URL: https://codereview.chromium.org/464213002 Cr-Commit-Position: refs/heads/master@{#291597}
-
jdduke authored
Redundant requests to observe the window are harmless, and should be supported given the undefined relationship and timing between |RWHVAndroid::SetContentViewCore()| and |RWHVAndroid::WasShown()|, both of which can trigger observing of the root window. BUG=406651,394604 NOTRY=true TBR=sievers@chromium.org Review URL: https://codereview.chromium.org/493053004 Cr-Commit-Position: refs/heads/master@{#291596}
-
eroman authored
BUG=406532 Review URL: https://codereview.chromium.org/500653002 Cr-Commit-Position: refs/heads/master@{#291595}
-
lazyboy authored
We can trigger this case by adding a webview that is not in DOM through newwindow API. Fix so that deferred attachment would not throw error, this is done by returning true in attachWindow() method in this case. BUG=None Test=Load a <webview> in a chrome app. Make a newwindow request from that webview. When the newwindow event fires, call e.window.attach with a <webview> that is not on DOM, this should work as intended, when the later <webview> is attached to DOM, it should load properly. Review URL: https://codereview.chromium.org/497833003 Cr-Commit-Position: refs/heads/master@{#291594}
-
dbeam authored
bookmarks. R=benjhayden@chromium.org BUG=405717 TEST=visual Review URL: https://codereview.chromium.org/492163004 Cr-Commit-Position: refs/heads/master@{#291593}
-
xhwang authored
Add a Renderer interface to manage all audio/video (and in the future text) rendering. With Renderer, Pipeline only needs to manage a Demuxer and a Renderer, which helps move a lot of complicated logic out of Pipeline. On Desktop Chrome, we use RendererImpl, which manages AudioRendererImpl and VideoRendererImpl. On other platforms, we could add different Renderer implementation. For example, we could support Browser side decoding/rendering. BUG=392259 Review URL: https://codereview.chromium.org/418143005 Cr-Commit-Position: refs/heads/master@{#291592}
-
yzshen authored
There will be a follow-up CL to switch some fields to non-nullable. BUG=406580 TEST=None Review URL: https://codereview.chromium.org/488533005 Cr-Commit-Position: refs/heads/master@{#291591}
-
mfoltz authored
BUG=406537 Review URL: https://codereview.chromium.org/491483005 Cr-Commit-Position: refs/heads/master@{#291590}
-
Daniel Cheng authored
This was formerly used by layout tests for cross-frame communication by setting the flag and polling its value. These layout tests have since been rewritten to use a combination of load events and postMessage. BUG=405846 R=abarth@chromium.org Review URL: https://codereview.chromium.org/495323003 Cr-Commit-Position: refs/heads/master@{#291589}
-
gunsch authored
Chromecast shell starts up MetricsService but reporting is largely controlled in platform-specific ways. On the Chromecast dongle, this occurs via the API that interfaces with the setup application. R=lcwu@chromium.org,asvitkine@chromium.org,isherman@chromium.org,bryaneyler@chromium.org BUG=400925 Review URL: https://codereview.chromium.org/482813004 Cr-Commit-Position: refs/heads/master@{#291588}
-
ajwong authored
Reimplements parts of //third_party/libjingle's build in GN. The new build is much less flexible than the original. No configuration variables have been ported. Some windows-specific configs have been left out and annotated with TODOs. Most signifcantly, the entirety of the 'if (enable_webrtc)' block has been omitted, because the GN build for webrtc isn't working yet. Despite these limitations, it is an adequate replacement for the 'stub' libjingle target in most situations. Note, this CL is a near direct copy of rlarocque's work at https://codereview.chromium.org/455583002/ BUG=none TBR=sky,pavely,rlarocque Review URL: https://codereview.chromium.org/498603002 Cr-Commit-Position: refs/heads/master@{#291587}
-
jorgelo authored
This makes GpuProcessHost::LaunchGpuProcess significantly easier to read. This is in preparation for getting rid of the GPU broker process. Also make "GPU process" capitalization consistent. BUG=329375 TEST=content_shell boots, --disable-gpu-sandbox gets propagated. Review URL: https://codereview.chromium.org/498833002 Cr-Commit-Position: refs/heads/master@{#291586}
-
jsbell authored
BUG=381456 R=cmumford@chromium.org Review URL: https://codereview.chromium.org/475063004 Cr-Commit-Position: refs/heads/master@{#291585}
-
vitalybuka authored
BUG=374321 Review URL: https://codereview.chromium.org/478183005 Cr-Commit-Position: refs/heads/master@{#291584}
-
ericzeng authored
- Use element.animate to resize the overlay for embedded extension options. When an <extensionoptions> element is embedded in a WebUI overlay, if its size changes the overlay will smoothly expand to surround the element. - Add an API to <extensionoptions> to defer autosizing until its embedder is ready. This is used to 'pin' the element's size until the overlay is done expanding. - Move the <extensionoptions> off screen until the overlay is done expanding. - Prevent <extensionoptions> from shrinking after the initial sizing. This makes the look of the embedded options page more consistent. BUG=386842 Committed: https://src.chromium.org/viewvc/chrome?view=rev&revision=291286 Review URL: https://codereview.chromium.org/480243003 Cr-Commit-Position: refs/heads/master@{#291583}
-
enne authored
The SchedulePaintInRect call in DelegatedFrameHost is only there to eventually notify an observer on the aura::Window that damage has occurred (for the video detector). Instead, just pass along the damage to the LayerDelegate API and don't schedule a paint. R=jbauman@chromium.org BUG=none Review URL: https://codereview.chromium.org/464643003 Cr-Commit-Position: refs/heads/master@{#291582}
-
kishor.ag authored
Presently, first time developer need to copy paste source for inserting gdb_chrome.py in ~/.gdbinit file. This change avoids the manual step & works seem less for first time developer also. BUG=None Review URL: https://codereview.chromium.org/444593003 Cr-Commit-Position: refs/heads/master@{#291581}
-
michaelpg authored
Currently, if the user opens the Help/About page on Chrome OS it will automatically check for an update and begin downloading/installing it. Users should be able to decide when their update is applied, e.g., in case they are connected to a tethered or bandwidth-limited network. This disables the auto-update check on Chrome OS, replacing it with a button the user can press to check for updates. (This has no effect on the scheduled auto-updating service.) Screenshots: http://imgur.com/a/k2s6y#0 BUG=394226 R=estade@chromium.org, deymo@chromium.org Review URL: https://codereview.chromium.org/476983002 Cr-Commit-Position: refs/heads/master@{#291580}
-
qyearsley authored
Note: I prefer "try server" and "try bot" more than "tryserver" and "trybot" because that's what's used in the official documentation: http://dev.chromium.org/developers/testing/try-server-usage BUG= Review URL: https://codereview.chromium.org/468633005 Cr-Commit-Position: refs/heads/master@{#291579}
-
dhnishi authored
Add functionality for button to stop origins on the Website Settings dialog. BUG=372607 Review URL: https://codereview.chromium.org/493383004 Cr-Commit-Position: refs/heads/master@{#291578}
-
michaelpg authored
BUG=313244 R=dbeam@chromium.org Review URL: https://codereview.chromium.org/488083005 Cr-Commit-Position: refs/heads/master@{#291577}
-
agable authored
Revert of Add test for ChromeVox keyboard commands. (patchset #6 of https://codereview.chromium.org/490443002/) Reason for revert: Broke interactive_ui_tests on chromium.chromiumos waterfall: http://build.chromium.org/p/chromium.chromiumos/builders/Linux%20ChromiumOS%20Ozone%20Tests%20%282%29/builds/1291 Original issue's description: > Add test for ChromeVox keyboard commands. > > This is just a couple of quick sanity checks to prevent future regressions > like the one in the linked bug. It tests both a Search+Shift shortcut and > the corresponding Prefix Key shortcut. > > Adds support for sending the meta modifier key in > aura/x11 tests. > > BUG=404470 > > Committed: https://src.chromium.org/viewvc/chrome?view=rev&revision=291547 TBR=dtseng@chromium.org,sky@chromium.org,dmazzoni@chromium.org NOTREECHECKS=true NOTRY=true BUG=404470 Review URL: https://codereview.chromium.org/500833002 Cr-Commit-Position: refs/heads/master@{#291576}
-
dyen authored
BUG=None TEST= trybots Review URL: https://codereview.chromium.org/499733002 Cr-Commit-Position: refs/heads/master@{#291575}
-
sky authored
Otherwise if you just build mojo_view_manager_unittests on windows nothing works. BUG=none TEST=none R=jamesr@chromium.org Review URL: https://codereview.chromium.org/501623002 Cr-Commit-Position: refs/heads/master@{#291574}
-
nduca authored
Will help work around https://code.google.com/p/trace-viewer/issues/detail?id=587 R=enne Review URL: https://codereview.chromium.org/495423003 Cr-Commit-Position: refs/heads/master@{#291573}
-
vmpstr authored
We have a function on the tiling set that finds tilings at scale. This patch uses this function. R=enne Review URL: https://codereview.chromium.org/505473002 Cr-Commit-Position: refs/heads/master@{#291572}
-
agable authored
This will fix the currently failing browser_tests CloudPolicyTests, which fail because the lastchange string is too long. TBR=scottmg@chromium.org, tandrii@chromium.org NOTRY=True NOTREECHECKS=True TEST=passed browser_tests on linux_chromium_rel trybot BUG=406783 Review URL: https://codereview.chromium.org/499063002 Cr-Commit-Position: refs/heads/master@{#291571}
-