- 25 Sep, 2014 12 commits
-
-
John Abd-El-Malek authored
BUG=414808 TBR=phajdan.jr@chromium.org Review URL: https://codereview.chromium.org/599863003 Cr-Commit-Position: refs/heads/master@{#296590}
-
hush authored
When webview translates into the screen from offscreen by calling WebView#SetTranslateX/Y, onDrawHardware is called with an empty global visible rect. When the webview is still offscreen, Android frameworks won't call DrawGL on WebView, which means the "parent draw constraints" stored in hardware renderer won't contain the draw constraints when the webview is offscreen. When webview gets an ondraw with an empty global visible rect, we need to make sure the parent draw constraints of the corresponding DrawGL is always posted back to child compositor and triggers an invalidate. BUG=417479 Review URL: https://codereview.chromium.org/603633003 Cr-Commit-Position: refs/heads/master@{#296589}
-
Ben Smith authored
This change includes implementation for MemFs and FuseFs. I've also reordered the fuse_operations struct to match the order used in the real FUSE implementation. BUG=414793 R=sbc@chromium.org Review URL: https://codereview.chromium.org/604513002 Cr-Commit-Position: refs/heads/master@{#296588}
-
thestig authored
BUG=42958,47950,49279,51379,51590,51679,52837,52957,54308,55533,56359,56676,58321,58340,58546,60556,60654,80462,80550,80551,84224,112278,112450,112594,118890 NOTRY=true TBR=ericwilligers@chromium.org Review URL: https://codereview.chromium.org/605553002 Cr-Commit-Position: refs/heads/master@{#296587}
-
thestig authored
BUG=417526 NOTRY=true TBR=tzik@chromium.org Review URL: https://codereview.chromium.org/600243003 Cr-Commit-Position: refs/heads/master@{#296586}
-
rvargas authored
BUG=416722 R=sky@chromium.org Review URL: https://codereview.chromium.org/606453002 Cr-Commit-Position: refs/heads/master@{#296585}
-
alexmos authored
RenderFrameHostManager::CommitNavigation was not using scoped_refptr when it created a new SiteInstance. This resulted in the new SiteInstance being deleted in FrameTree::CreateProxiesForSiteInstance after iterating through the frame tree with base::Bind due to its ref count falling to 0. This was the cause of crashes in RenderFrameHostManagerTest.BrowserSideNavigationCrossSiteNavigation and RenderFrameHostManagerTest.BrowserSideNavigationIgnoreStaleNavigationCommit under --site-per-process. These tests now pass. BUG=417518 Review URL: https://codereview.chromium.org/599253002 Cr-Commit-Position: refs/heads/master@{#296584}
-
gunsch authored
R=lcwu@chromium.org,byungchul@chromium.org BUG=400876 Review URL: https://codereview.chromium.org/591413006 Cr-Commit-Position: refs/heads/master@{#296583}
-
rvargas authored
BUG=416722 R=gene@chromium.org Review URL: https://codereview.chromium.org/606443003 Cr-Commit-Position: refs/heads/master@{#296582}
-
gunsch authored
R=byungchul@chromium.org,lcwu@chromium.org BUG=332744 Review URL: https://codereview.chromium.org/595113002 Cr-Commit-Position: refs/heads/master@{#296581}
-
rvargas authored
BUG=416722 R=wfh@chromium.org Review URL: https://codereview.chromium.org/606443002 Cr-Commit-Position: refs/heads/master@{#296580}
-
cmihail authored
A simple cloud extension example that uses the file system provider API This example is different from https://codereview.chromium.org/360673004 as it is an extension and not an app. BUG=415847 R=mtomasz@chromium.org Review URL: https://codereview.chromium.org/587293002 Cr-Commit-Position: refs/heads/master@{#296579}
-
- 24 Sep, 2014 28 commits
-
-
michaelpg authored
Metric exists but is spelled wrong in JS. R=tim@chromium.org,estade@chromium.org Review URL: https://codereview.chromium.org/572113002 Cr-Commit-Position: refs/heads/master@{#296578}
-
John Abd-El-Malek authored
This has to be landed first. After the recipe change, I'll remove the old ones. BUG=414808 R=phajdan.jr@chromium.org Review URL: https://codereview.chromium.org/599993003 Cr-Commit-Position: refs/heads/master@{#296577}
-
tapted authored
App Shims are small .app bundles for Mac, which run in their own process to provide packaged apps with an OSX Dock icon, using IPC to communicate with the browser process. Most of the app_shim code currently lives in src/apps/app_shim, but app shims are very much a browser feature, so it doesn't belong there. It's causing DEPS problems for athena efforts. This CL moves most of apps/app_shim to chrome/browser/apps/app_shim (c/b/apps didn't exist until a few months after src/apps/app_shim). The shim itself (i.e. chrome_main_app_mode_mac.mm) doesn't run in the browser process - it has its own, shim process. Those parts are moved to a new folder: src/chrome/app_shim, consolidating files currently spread across src/apps/app_shim and src/chrome/app. app_shim_launch.h and app_shim_messages.h are used in both the shim process and the browser process. They're moved to chrome/common/mac. Summary of changes: {apps => chrome/browser/apps}/app_shim/* except {apps => chrome}/app_shim/chrome_main_app_mode_mac.mm {apps/app_shim => chrome/common/mac}/app_shim_launch.h {apps/app_shim => chrome/common/mac}/app_shim_messages.h app_shim.gypi renamed to browser_app_shim.gypi chrome/app_shim/app_shim.gypi added and chrome/{app => app_shim}/app_mode-Info.plist chrome/{app => app_shim}/app_mode_loader_mac.mm - apps/app_shim/DEPS now just generated_resources.h - 'app_mode_app' target moved from chrome.gyp to app_shim.gypi BUG=266705 Review URL: https://codereview.chromium.org/585123004 Cr-Commit-Position: refs/heads/master@{#296576}
-
Paweł Hajdan, Jr authored
With this change they take about 1 hour 25 minutes to cycle. Next step is likely swarming net_unittests. BUG=387743 R=jam@chromium.org Review URL: https://codereview.chromium.org/525613003 Cr-Commit-Position: refs/heads/master@{#296575}
-
John Abd-El-Malek authored
In followup patches, I'll remove the now empty testers. BUG=414808 R=phajdan.jr@chromium.org Review URL: https://codereview.chromium.org/603013002 Cr-Commit-Position: refs/heads/master@{#296574}
-
jiayl authored
Revert of Revert of [AiS] Merge answers into highest-scoring result (patchset #1 id:1 of https://codereview.chromium.org/598253002/) Reason for revert: Broken GN build: http://build.chromium.org/p/chromium.linux/builders/Linux%20GN%20%28dbg%29/builds/13101 Original issue's description: > Revert of [AiS] Merge answers into highest-scoring result (patchset #6 id:100001 of https://codereview.chromium.org/584653004/) > > Reason for revert: > The new tests are flaky: > http://build.chromium.org/p/chromium.memory/builders/Linux%20ASan%20LSan%20Tests%20%283%29/builds/7944 > > Original issue's description: > > [AiS] Merge answers into highest-scoring result > > > > Answer contents and type must always be copied to the highest-scoring > > suggestion, to ensure answers are not lost due to suggestion > > deduplication. > > > > BUG=415836 > > R=mpearson > > > > Committed: https://crrev.com/978a4bf4a3be714950ed265660bd9566f7abd922 > > Cr-Commit-Position: refs/heads/master@{#296520} > > TBR=mpearson@google.com,mpearson@chromium.org,newt@chromium.org,groby@chromium.org > NOTREECHECKS=true > NOTRY=true > BUG=415836 > > Committed: https://crrev.com/ba5d32190d4f056b11738b050b94895b655c52f7 > Cr-Commit-Position: refs/heads/master@{#296555} TBR=mpearson@google.com,mpearson@chromium.org,newt@chromium.org,groby@chromium.org NOTREECHECKS=true NOTRY=true BUG=415836 Review URL: https://codereview.chromium.org/599273002 Cr-Commit-Position: refs/heads/master@{#296573}
-
qinmin authored
Lots of crash reports from SGS devices running JB, mostly galaxy S3 A driver bug is filed against samsung BUG=365494 Review URL: https://codereview.chromium.org/602953002 Cr-Commit-Position: refs/heads/master@{#296572}
-
bbudge authored
Revert of PPAPI: Never re-enter JavaScript for PostMessage. (patchset #4 id:60001 of https://codereview.chromium.org/589213003/) Reason for revert: May be crashing Chrome: https://code.google.com/p/chromium/issues/detail?id=417511 Original issue's description: > PPAPI: Never re-enter JavaScript for PostMessage. > > Blocking renderer->plugin messages can be interrupted by any message > from the plugin->renderer (even async ones). So while handline a blocking > message, such as HandleInputEvent or HandleBlockingMessage, it's currently > possible to re-enter JavaScript. This patch makes that impossible by > queueing up Plugin->Renderer messages sent via PPB_Messaging::PostMessage > while any renderer->plugin sync message is on the stack. > > BUG=384528 > > Committed: https://crrev.com/f73075c99b5ba30e8d62dc5f13fdfb210d0fc506 > Cr-Commit-Position: refs/heads/master@{#296311} TBR=raymes@chromium.org,dmichael@chromium.org NOTREECHECKS=true NOTRY=true BUG=384528 Review URL: https://codereview.chromium.org/601923003 Cr-Commit-Position: refs/heads/master@{#296571}
-
lfg authored
This CL adds a few more tests to app_shell_browsertests: WebViewAPITest.TestAllowTransparencyAttribute WebViewAPITest.TestAutosizeAfterNavigation WebViewAPITest.TestAutosizeBeforeNavigation WebViewAPITest.TestAutosizeHeight WebViewAPITest.TestAutosizeRemoveAttributes WebViewAPITest.TestAutosizeWithPartialAttributes BUG=352293 Review URL: https://codereview.chromium.org/604443003 Cr-Commit-Position: refs/heads/master@{#296570}
-
eroman authored
There were several consumers assuming that the returned hosts had no brackets. BUG=417417 Review URL: https://codereview.chromium.org/602973002 Cr-Commit-Position: refs/heads/master@{#296569}
-
brettw authored
This gets two changes: Rename GN public variables. Lock page in LoadFXAnnot to prevent unintended page closing TBR=jam@chromium.org Review URL: https://codereview.chromium.org/594383004 Cr-Commit-Position: refs/heads/master@{#296568}
-
fgorski authored
This is to make sure the starting list of account mapping properly reflects the mappings present in the previous Chrome session. BUG=374969 Review URL: https://codereview.chromium.org/600053002 Cr-Commit-Position: refs/heads/master@{#296567}
-
rsesek authored
BUG=416829 R=brettw@chromium.org Review URL: https://codereview.chromium.org/598233002 Cr-Commit-Position: refs/heads/master@{#296566}
-
morrita authored
The test has been broken since MojoBootstrap was introduced. The change makes it impossible to inject failure from the ChannelMojo subclass. This change uses large data as pending message to trigger failure, instead of overloading IPC::ChannelMojo functions. R=viettrungluu@chromium.org BUG=417439 Review URL: https://codereview.chromium.org/598093006 Cr-Commit-Position: refs/heads/master@{#296565}
-
dtu authored
I VNCed into a bot and learned that the Buildbot scripts munge the environment variables, so that PROGRAMFILES(X86) doesn't exist. Using platform.machine() is a more robust, cross-platform way of checking if the OS is 64-bit. The Windows XP bots still worked, because their OSes are all 32-bit. BUG=336559 TEST=None. Review URL: https://codereview.chromium.org/603763002 Cr-Commit-Position: refs/heads/master@{#296564}
-
blink-deps-roller authored
Summary of changes available at: https://chromium.googlesource.com/chromium/blink/+log/5777092..e229507 TBR=pdr@chromium.org,wjmaclean@chromium.org,ager@chromium.org Review URL: https://codereview.chromium.org/603453004 Cr-Commit-Position: refs/heads/master@{#296563}
-
drbasic authored
On Windows 8, always enabled accessibility for editable text controls. So the base accessibility is AccessibilityModeEditableTextOnly. R=aboxhall@chromium.org BUG= Review URL: https://codereview.chromium.org/545863002 Cr-Commit-Position: refs/heads/master@{#296562}
-
dmazzoni authored
See bug for more context; this makes the "Accessibility" section show up on all platforms, not just Chrome OS, and adds a link to the special web store page with curated accessibility extensions. BUG=416983 Review URL: https://codereview.chromium.org/599683002 Cr-Commit-Position: refs/heads/master@{#296561}
-
viettrungluu authored
R=jamesr@chromium.org Review URL: https://codereview.chromium.org/597413002 Cr-Commit-Position: refs/heads/master@{#296560}
-
sky authored
This way the size should always remain the same regardless of the origin. Also, it's important that we ceil here otherwise a round trip for DIP to screen to DIP could result in a smaller value resulting in all sorts of wierdness. BUG=417392 TEST=see bug R=ananta@chromium.org Review URL: https://codereview.chromium.org/600103002 Cr-Commit-Position: refs/heads/master@{#296559}
-
reveman authored
This adds a rasterizer implementation explicitly used for rasterizing to bitmap resources. Each rasterizer is already aware of specific resource details and it is much easier and less confusing to implement a different rasterizer that handle bitmap resources then trying to emulate support for GL-ish APIs that are used by other rasterizer implementations. This allows us to clean up LTHI a bit and reduces the complexity of the ResourceProvider class significantly. It also makes future changes that will allow GpuMemoryBuffers to be created and mapped in worker threads easier implement. BUG= Review URL: https://codereview.chromium.org/602493003 Cr-Commit-Position: refs/heads/master@{#296558}
-
alemate authored
This CL adds automatic "last used keyboard layout" for active user POD on User Adding screen. BUG=292774 TEST=manual Review URL: https://codereview.chromium.org/602593003 Cr-Commit-Position: refs/heads/master@{#296557}
-
newt authored
Revert of Revert of Fix doodle verification URL. (patchset #1 id:1 of https://codereview.chromium.org/599243002/) Reason for revert: The original revert was a mistake. Relanding this with no changed. Original issue's description: > Revert of Fix doodle verification URL. (patchset #3 id:40001 of https://codereview.chromium.org/587943003/) > > Reason for revert: > Caused test failure: > http://build.chromium.org/p/chromium.memory/builders/Linux%20ASan%20LSan%20Tests%20%283%29/builds/7944 > > Original issue's description: > > Fix doodle verification URL. > > > > When verifying that the cached doodle is still valid, we load the doodle > > URL and append the query param "async=es_dfp:<fingerprint>". Previously, > > the ":" was being escape to "%3A", causing the server to respond with a > > 400 error. This mollifies the server by keeping the colon unescaped. > > > > BUG=413845 > > > > Committed: https://crrev.com/673cc76103079eaada968c537c6605dbaf8d909c > > Cr-Commit-Position: refs/heads/master@{#296512} > > TBR=justincohen@chromium.org,rsleevi@chromium.org,mmenke@chromium.org,newt@chromium.org > NOTREECHECKS=true > NOTRY=true > BUG=413845 > > Committed: https://crrev.com/6101b6321585a402ffc7c45dbb4fc61bc36f0051 > Cr-Commit-Position: refs/heads/master@{#296546} TBR=justincohen@chromium.org,rsleevi@chromium.org,mmenke@chromium.org,groby@chromium.org,jiayl@chromium.org NOTREECHECKS=true NOTRY=true BUG=413845 Review URL: https://codereview.chromium.org/606443004 Cr-Commit-Position: refs/heads/master@{#296556}
-
jiayl authored
Revert of [AiS] Merge answers into highest-scoring result (patchset #6 id:100001 of https://codereview.chromium.org/584653004/) Reason for revert: The new tests are flaky: http://build.chromium.org/p/chromium.memory/builders/Linux%20ASan%20LSan%20Tests%20%283%29/builds/7944 Original issue's description: > [AiS] Merge answers into highest-scoring result > > Answer contents and type must always be copied to the highest-scoring > suggestion, to ensure answers are not lost due to suggestion > deduplication. > > BUG=415836 > R=mpearson > > Committed: https://crrev.com/978a4bf4a3be714950ed265660bd9566f7abd922 > Cr-Commit-Position: refs/heads/master@{#296520} TBR=mpearson@google.com,mpearson@chromium.org,newt@chromium.org,groby@chromium.org NOTREECHECKS=true NOTRY=true BUG=415836 Review URL: https://codereview.chromium.org/598253002 Cr-Commit-Position: refs/heads/master@{#296555}
-
jbauman authored
This race should be benign, because the count is just used for a heuristic and can't truly be synchronized anyway, but best to use a lock with the access. BUG=417194 Review URL: https://codereview.chromium.org/604583002 Cr-Commit-Position: refs/heads/master@{#296554}
-
thestig authored
Revert of [Suggestions] Move ImageManager to the component (patchset #6 id:220001 of https://codereview.chromium.org/543753002/) Reason for revert: One of the new unit tests failed with uninit memory access: http://build.chromium.org/p/chromium.memory.fyi/builders/Chromium%20OS%20%28valgrind%29%282%29/builds/43137/ Original issue's description: > [Suggestions] Move ImageManager to the component > > Keeps the fetcher functionality as ImageFetcherImpl in chrome/browser/search/suggestions. > > BUG=387751 > TBR=blundell > TEST=ImageManagerTest,ImageFetcherBrowserTest > > Committed: https://crrev.com/5a25f30080dd57d200679546c970d70f2247def9 > Cr-Commit-Position: refs/heads/master@{#296503} TBR=huangs@chromium.org,blundell@chromium.org,mathp@chromium.org NOTREECHECKS=true NOTRY=true BUG=387751 Review URL: https://codereview.chromium.org/600203002 Cr-Commit-Position: refs/heads/master@{#296553}
-
alekseys authored
BUG=397741 Review URL: https://codereview.chromium.org/601573002 Cr-Commit-Position: refs/heads/master@{#296552}
-
jgraettinger authored
This is to intended to match the HTTP/2 static table: http://http2.github.io/http2-spec/compression.html#static.table.definition (entry 16). BUG=389914 Review URL: https://codereview.chromium.org/437353004 Cr-Commit-Position: refs/heads/master@{#296551}
-