| Commit message (Collapse) | Author | Age | Files | Lines |
| |
|
|
|
|
| |
git-svn-id: svn://svn.chromium.org/chrome/branches/2027/src@274414 0039d316-1c4b-4281-b951-d872f2087c98
|
|
|
|
| |
git-svn-id: svn://svn.chromium.org/chrome/branches/2027/src@274410 0039d316-1c4b-4281-b951-d872f2087c98
|
|
|
|
|
|
|
|
|
|
|
| |
BUG=379943
R=thestig@chromium.org
TBR=thestig@chromium.org
NOTRY=true
Review URL: https://codereview.chromium.org/306013011
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@274361 0039d316-1c4b-4281-b951-d872f2087c98
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| |
Background: We restart adbd between runs because we noticed that the
likelyhood of an adbd hang goes up with the length of time the process
has been running.
Killing was just a convenient way to do that, but it isn't the most robust.
The chromium.perf bots are very frequently going offline now and they
always are getting stuck at the point of the adbd restart. So I'm trying
this gentler method of restarting to see if it improves reliability.
BUG=
Review URL: https://codereview.chromium.org/304053002
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@274360 0039d316-1c4b-4281-b951-d872f2087c98
|
|
|
|
|
|
|
|
|
|
|
| |
Saved the current value and restore it when emulation ends. During emulation
the visible viewport is set to the size of the emulated screen.
BUG=370035
Review URL: https://codereview.chromium.org/302193002
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@274359 0039d316-1c4b-4281-b951-d872f2087c98
|
|
|
|
|
|
|
|
|
| |
The test is incorrectly placed as part of the core unit test library
sources instead of with other tests.
Review URL: https://codereview.chromium.org/306203004
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@274358 0039d316-1c4b-4281-b951-d872f2087c98
|
|
|
|
|
|
|
|
| |
BUG=355154
Review URL: https://codereview.chromium.org/301103002
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@274357 0039d316-1c4b-4281-b951-d872f2087c98
|
|
|
|
|
|
|
|
|
|
| |
before we add a new session to the active sessions.
R=jar@chromium.org
Review URL: https://codereview.chromium.org/307993011
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@274356 0039d316-1c4b-4281-b951-d872f2087c98
|
|
|
|
|
|
|
|
|
| |
BUG=None
R=sadrul@chromium.org
Review URL: https://codereview.chromium.org/306063007
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@274355 0039d316-1c4b-4281-b951-d872f2087c98
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| |
We crash because mRefreshButton is null when updateUI() is called.
mRefreshButton is initialized on onCreateOptionsMenu()
According to http://stackoverflow.com/questions/13267030/oncreateoptionsmenu-is-never-called, seems like
onCreateOptionMenu will never got called on some themes on phones with menu button.
I can repro by overriding the theme to @android:style/Theme.Black.NoTitleBar
The fix is adding a null check.
BUG=364591
Review URL: https://codereview.chromium.org/308793007
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@274354 0039d316-1c4b-4281-b951-d872f2087c98
|
|
|
|
|
|
|
|
|
|
|
|
| |
A regression caused buttons to be rendered above the image. This fixes
the problem by forcing the image to be the first child of the bottom
view (image is together with the buttons in the bottom view).
BUG=378077,368025
Review URL: https://codereview.chromium.org/305633004
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@274353 0039d316-1c4b-4281-b951-d872f2087c98
|
|
|
|
|
|
|
|
|
| |
BUG=none
R=sbc@chromium.org
Review URL: https://codereview.chromium.org/302083015
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@274352 0039d316-1c4b-4281-b951-d872f2087c98
|
|
|
|
|
|
|
|
|
|
|
| |
It's now called enable_websocket_over_spdy and is a member of
HttpNetworkSession::Params.
BUG=372528
Review URL: https://codereview.chromium.org/295383007
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@274351 0039d316-1c4b-4281-b951-d872f2087c98
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| |
Moves many of the files in sync/notifier to components/invalidation.
This change does not introduce any new dependencies. The relevant
dependency rules both before and after this change should be:
- chrome/browser/invalidation and chrome in general depend on
components/invalidation.
- components/invalidation depends on sync/notifier and sync in
general.
- sync/notifier, components/invalidation, and various parts of
chrome all depend on sync/internal_api/public.
The eventual goal is to move all of sync/notifier into
components/invalidation. The invalidation-related parts of
sync/internal_api/public should be moved to components/invalidation,
too. This will allow us to remove the deopendencies from
components/invalidation to sync, and remove sync's dependencies on
cacheinvalidation and libjingle.
This change is a regression in terms of shared library componentization.
the files in the sync/notifier folder could be built as a shared
library. The files in compononents/invalidation do not support this
yet. The SYNC_EXPORT declarations in the moved files have been changed
to INVALIDATION_EXPORT so as to not lose this information, but the
macros are currently #defined to no-ops.
This change does not attempt to rename any classes or namespaces.
Many of the files ported from sync/notifier still use the syncer
namespace. Some, like SyncSystemResources, still have names tied
to their sync heritage. This will be addressed in future CLs.
Some non-trivial or non-obvious changes include:
- invalidator_state.h was moved to sync/internal_api/public/base so it
could be shared by both sync/ and components/invalidation. This should
be fixed in a future CL.
- FromNotifierReason was split out of invalidator_state.h and moved to
the newly-created components/invalidator_reason_util.h
TBR=zea,rtenneti,mallinath,dcheng
BUG=259559
Review URL: https://codereview.chromium.org/294123004
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@274350 0039d316-1c4b-4281-b951-d872f2087c98
|
|
|
|
|
|
|
|
| |
BUG=367896
Review URL: https://codereview.chromium.org/252023009
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@274349 0039d316-1c4b-4281-b951-d872f2087c98
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| |
Adds a new tab to the about:sync page to display the latest per-type
counters. These counters will eventually replace the StatusControllers
that contain much of the same information.
This includes some changes to the C++ SyncInternalsMessageHandler to
register to observe these counters as well as some new WebUI to display
them.
There is a known bug in this code. The StausCounter update logic has
not been implemented yet, so the item counts will always be zero. This
will be fixed in a future CL.
BUG=349301
Review URL: https://codereview.chromium.org/290023003
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@274348 0039d316-1c4b-4281-b951-d872f2087c98
|
|
|
|
|
|
|
|
|
|
|
|
|
| |
Picked up changes:
f6e5bbb Start using computed style instead of default tag actions.
d8575dc Fix UnicodeTokenizer's handling of special characters.
44b5635 Move SAX classes to com.dom_distiller.
BUG=375553,378385
Review URL: https://codereview.chromium.org/309833002
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@274346 0039d316-1c4b-4281-b951-d872f2087c98
|
|
|
|
|
|
|
|
| |
BUG=379425
Review URL: https://codereview.chromium.org/308303004
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@274345 0039d316-1c4b-4281-b951-d872f2087c98
|
|
|
|
|
|
|
|
|
|
|
|
| |
This test seems to be flaky on some bots and consistently failing on
chromeos.
BUG=379927
TBR=aboxhall@chromium.org
Review URL: https://codereview.chromium.org/308793014
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@274344 0039d316-1c4b-4281-b951-d872f2087c98
|
|
|
|
|
|
|
|
|
|
| |
This CL is a precursor for https://codereview.chromium.org/289283004/.
BUG=376613
Review URL: https://codereview.chromium.org/309773002
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@274343 0039d316-1c4b-4281-b951-d872f2087c98
|
|
|
|
|
|
|
|
| |
These strings can't have placeholders.
Review URL: https://codereview.chromium.org/301173005
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@274342 0039d316-1c4b-4281-b951-d872f2087c98
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| |
The crash report is saying that the crash still happens in Aura.
I still don't get the repro steps, but on possibility is that
the parent exists but WindowTreeHost doesn't exist (missing
root windows? I don't even know that is possible though...).
BUG=373522
R=erg@chromium.org
TEST=none
Review URL: https://codereview.chromium.org/304223012
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@274341 0039d316-1c4b-4281-b951-d872f2087c98
|
|
|
|
|
|
|
|
|
|
|
|
| |
This fixes a bug where overlays that don't push history entries still did when
closing them. Add a browser test to test this case.
BUG=379055
TEST=see bug
Review URL: https://codereview.chromium.org/306993006
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@274340 0039d316-1c4b-4281-b951-d872f2087c98
|
|
|
|
|
|
|
|
|
| |
BUG=304341
R=bulach@chromium.org
Review URL: https://codereview.chromium.org/303503008
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@274339 0039d316-1c4b-4281-b951-d872f2087c98
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| |
Already marked as retired on bug, suppressions query has no results for
this either.
BUG=258466
R=thestig@chromium.org
TBR=thestig@chromium.org
NOTRY=true
Review URL: https://codereview.chromium.org/309533015
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@274338 0039d316-1c4b-4281-b951-d872f2087c98
|
|
|
|
|
|
|
|
|
|
|
| |
Allows skia to remove SK_SUPPORT_LEGACY_INSTALLPIXELSPARAMS
NOTRY=True
failures unrelated to this CL
Review URL: https://codereview.chromium.org/308833004
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@274337 0039d316-1c4b-4281-b951-d872f2087c98
|
|
|
|
| |
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@274336 0039d316-1c4b-4281-b951-d872f2087c98
|
|
|
|
|
|
|
|
|
|
| |
http://build.chromium.org/f/chromium/perf/dashboard/ui/changelog_blink.html?url=/trunk&range=175159:175308&mode=html
TBR=mvanouwerkerk@chromium.org
Review URL: https://codereview.chromium.org/301173008
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@274335 0039d316-1c4b-4281-b951-d872f2087c98
|
|
|
|
| |
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@274334 0039d316-1c4b-4281-b951-d872f2087c98
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| |
This pulls in the following Native Client changes:
r13252: (sehr) Make Android scons build align better with gyp android build
r13253: (mseaborn) Add test for PNaCl setjmp() bug in which stack slots get reused wrongly
r13254: (jvoung) Remove -sfi-load, etc. from the pnacl-translate driver (always set for nacl)
r13255: (dyen) Added a way for toolchain_build to update known git mirrors.
r13256: (hamaji) Non-SFI Mode: Build newlib-based Linux static executables for ARM
r13257: (mcgrathr) Include address in ReserveBottomPages failure message
r13258: (sbc) Add {TOOLCHAIN}/usr/local/lib to pnacl library search path.
r13259: (sehr) Fix stlport issues in scons build
r13260: (mcgrathr) Accept mmap EINVAL failure for any <64k page, not just 0
r13261: (jvoung) PNaCl: Update LLVM revision in pnacl/COMPONENT_REVISIONS
BUG=none
TEST=browser_tests and nacl_integration
Review URL: https://codereview.chromium.org/304323011
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@274333 0039d316-1c4b-4281-b951-d872f2087c98
|
|
|
|
|
|
|
|
|
|
| |
As a first step to getting a separate target for the display unittests, this CL is adding a simple target with one unittest. All display_unittests currently running under ui_unittests will be migrated under this target when display_unittests is enabled on the main waterfall.
BUG=333413
Review URL: https://codereview.chromium.org/304183010
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@274332 0039d316-1c4b-4281-b951-d872f2087c98
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| |
This test is currently disabled on Linux Aura because it was running too slowly
and caused flakes. I'm hoping that the test will run faster in
content_browsertests, so we won't need to disable the test in that case.
I'm making a commit that only moves this test so it can be easily reverted if
necessary.
BUG=371873
R=dmichael@chromium.org
Review URL: https://codereview.chromium.org/306393002
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@274331 0039d316-1c4b-4281-b951-d872f2087c98
|
|
|
|
|
|
|
|
|
|
|
| |
When no device reporting policy is present, we should assume that
reporting (with the exception of device location) is enabled.
BUG=379284
Review URL: https://codereview.chromium.org/308643006
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@274330 0039d316-1c4b-4281-b951-d872f2087c98
|
|
|
|
|
|
|
|
|
|
|
|
|
| |
permissions.
This is so we can check if the user has opted into stats before enabling
initializing analytics in our app.
BUG=378067
Review URL: https://codereview.chromium.org/305663002
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@274329 0039d316-1c4b-4281-b951-d872f2087c98
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| |
> Implement a demo that shows one app embedding rendering in another.
>
> launcher inits the view manager, running the "window manager" app @ root.
> window manager embeds another app.
>
> R=sky@chromium.org
> TEST=mojo_shell --origin=http://127.0.0.1:4444 --disable-cache mojo:mojo_demo_launcher
> http://crbug.com/365012
>
> Review URL: https://codereview.chromium.org/303163005
TBR=ben@chromium.org
Review URL: https://codereview.chromium.org/306403003
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@274328 0039d316-1c4b-4281-b951-d872f2087c98
|
|
|
|
|
|
|
|
|
|
|
|
|
| |
This works around missing linkage between mesa's DRI drivers (e.g.
i965_dri.so) and libglapi.so.0. This causes problems under gbm.
TEST=chrome --ozone-platform=gbm on link_freon
BUG=377497
NOTRY=true
Review URL: https://codereview.chromium.org/310673002
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@274327 0039d316-1c4b-4281-b951-d872f2087c98
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| |
On desktop, always set the memory limit to 256MB, and ask that the renderer
only use that memory to draw content that is near the viewport. The effective
limit prior to this patch was 384MB, but would quickly get cut down as multiple
windows are opened, but would not fall too much lower than 256MB (e.g, 128
on Mac).
On mobile, use all available memory for the current, only, renderer.
Do not take into account unmanaged (e.g, WebGL) memory usage.
BUG=377065
Review URL: https://codereview.chromium.org/308743005
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@274326 0039d316-1c4b-4281-b951-d872f2087c98
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| |
Original CL: https://codereview.chromium.org/300853008/
Original Description:
Refactors ExternalInstallUI to have determinate lifetimes.
This is likely the first of multiple patches targeting this area of code; the
next one will concentrate on pulling the related logic out of ExtensionService.
----------------------------------------------------
The original patch contained a cycle in that when an external install warning
was clicked, it would accept or remove the extension, and then remove the error.
Since the manager listened for the extension to be loaded or unloaded, this
resulted in a double-removal. Fix is straightforward.
We also didn't have tests for actually interacting with the dialog, so two have
been added.
TBR=yoz@chromium.org
BUG=378042
Review URL: https://codereview.chromium.org/309643007
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@274325 0039d316-1c4b-4281-b951-d872f2087c98
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| |
Adds the public headers and visibility to the desc command.
Improve formatting of visibility printing.
Don't duplicate group deps in the tree output of "desc"
R=scottmg@chromium.org
Review URL: https://codereview.chromium.org/306013007
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@274324 0039d316-1c4b-4281-b951-d872f2087c98
|
|
|
|
|
|
|
|
|
| |
BUG=379798
TBR=tommi@chromium.org
Review URL: https://codereview.chromium.org/307253002
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@274323 0039d316-1c4b-4281-b951-d872f2087c98
|
|
|
|
|
|
|
|
|
|
|
|
|
| |
launcher inits the view manager, running the "window manager" app @ root.
window manager embeds another app.
R=sky@chromium.org
TEST=mojo_shell --origin=http://127.0.0.1:4444 --disable-cache mojo:mojo_demo_launcher
http://crbug.com/365012
Review URL: https://codereview.chromium.org/303163005
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@274322 0039d316-1c4b-4281-b951-d872f2087c98
|
|
|
|
|
|
|
|
|
|
|
|
| |
This blocks the DLL from loading in sandbox processes. It was causing sandbox
startup failure on Win64.
TBR=jschuh@chromium.org
BUG=379730
Review URL: https://codereview.chromium.org/308993003
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@274319 0039d316-1c4b-4281-b951-d872f2087c98
|
|
|
|
|
|
|
|
|
|
|
|
|
| |
With each TrayBackgroundView now backed by its own layer, calling SchedulePaint on StatusAreaWidgetDelegate no longer notifies them of the need to paint.
When the shelf changes its dimming state it triggers painting. Add support for StatusAreaWidget to notify each of the layer backed trays that painting is needed
TEST=Launch a non-maximized browser. The system tray will be a dark grey. Maximize the browser. The tray should be a lighter grey. This will mimic the colour changes of the application launcher on the shelf.
BUG=378115
Review URL: https://codereview.chromium.org/302153002
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@274318 0039d316-1c4b-4281-b951-d872f2087c98
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| |
E.g., something like
out/Debug/mojo_shell file://$PWD/out/Debug/lib/libmojo_sample_app.so
should work.
R=sky@chromium.org
Review URL: https://codereview.chromium.org/302173003
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@274317 0039d316-1c4b-4281-b951-d872f2087c98
|
|
|
|
|
|
|
|
|
| |
BUG=379170
TBR=asargent
Review URL: https://codereview.chromium.org/309533013
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@274316 0039d316-1c4b-4281-b951-d872f2087c98
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| |
Broke Windows compile:
http://build.chromium.org/p/chromium.win/buildstatus?builder=Win%20x64%20Builder&number=180
FAILED: ninja -t msvc -e environment.x64 -- C:\b\build\goma/gomacc "C:\b\depot_tools\win_toolchain\vs2013_files\VC\bin\amd64\cl.exe" /nologo /showIncludes /FC @obj\remoting\host\win\remoting_core.wts_session_process_delegate.obj.rsp /c ..\..\remoting\host\win\wts_session_process_delegate.cc /Foobj\remoting\host\win\remoting_core.wts_session_process_delegate.obj /Fdobj\remoting\remoting_core.cc.pdb
c:\b\build\slave\win_x64_builder\build\src\remoting\host\win\wts_session_process_delegate.cc(386) : error C2661: 'IPC::ChannelProxy::ChannelProxy' : no overloaded function takes 4 arguments
ninja: build stopped: subcommand failed.
> Introduce IPC::ChannelProxy::Create*() and IPC::SynChannel::Create*()
>
> This change hides constructors of these classes so that we can turn
> them polymorphic classes.
>
> Note that having almost identical ChannelProxy::Init*() isn't great
> and they will be replaced by a factory-like abstraction in coming
> changes.
>
> TEST=none
> R=darin,cpu
> BUG=377980
>
> Review URL: https://codereview.chromium.org/301973003
TBR=morrita@chromium.org
Review URL: https://codereview.chromium.org/312553004
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@274315 0039d316-1c4b-4281-b951-d872f2087c98
|
|
|
|
|
|
|
|
|
|
|
| |
Expose client_id in chromeosInforPrivate for enterprise
kiosk.
BUG=328437
Review URL: https://codereview.chromium.org/308913004
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@274313 0039d316-1c4b-4281-b951-d872f2087c98
|
|
|
|
|
|
|
|
|
| |
Currently log lines from the plugin get 2 newlines, which wastes space in
the console output. This strips off the extra newline.
Review URL: https://codereview.chromium.org/308183004
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@274312 0039d316-1c4b-4281-b951-d872f2087c98
|
|
|
|
|
|
|
|
|
|
|
| |
Enable a Shell for tests that exist in Linux with Ash.
TEST=TabDragControllerInteractiveUiTest
BUG=330429
Review URL: https://codereview.chromium.org/301613002
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@274311 0039d316-1c4b-4281-b951-d872f2087c98
|