Elliott Sprehn
c24fbd5cd2
Remove more API from Node and ContainerNode.
...
R=abarth@chromium.org , ojan@chromium.org
Review URL: https://codereview.chromium.org/698123002
2014-11-03 14:55:19 -08:00
Adam Barth
512c4591a6
Remove HTMLLinkElement
...
Please use <import> instead.
R=esprehn@chromium.org
Review URL: https://codereview.chromium.org/696413002
2014-11-03 12:51:24 -08:00
Elliott Sprehn
ca3b2661ef
Remove a lot of API surface from Element.
...
R=ojan@chromium.org
Review URL: https://codereview.chromium.org/696903002
2014-10-31 16:48:20 -07:00
Elliott Sprehn
5330701999
Remove Element#attributes.
...
We now implement getAttributes() such that it returns
a new set of Attr isntances on every call as well.
R=abarth@chromium.org
Review URL: https://codereview.chromium.org/697773002
2014-10-31 15:10:53 -07:00
Adam Barth
97565a73db
Introduce blink::ServiceProvider
...
This CL is a warmup for making hyperlinks actually work. ServiceProvider lets
the embedder inject a bundle of services that are specific to the embedding
context (e.g., NavigatorHost). Services that are independent to the embedding
context can be injected via blink::Platform.
R=eseidel@chromium.org
Review URL: https://codereview.chromium.org/696733003
2014-10-31 10:54:03 -07:00
Elliott Sprehn
c384b62ef1
Remove lots of dead virtuals from Element.
...
Mostly form related things we don't need now.
R=ojan@chromium.org , abarth@chromium.org
Review URL: https://codereview.chromium.org/694703002
2014-10-30 23:03:02 -04:00
Adam Barth
07106fceee
Remove callOnMainThread
...
This API is redundant with exposing the main-thread task runner.
R=eseidel@chromium.org
Review URL: https://codereview.chromium.org/691493004
2014-10-30 09:40:12 -07:00
Adam Barth
fc451b47eb
Unfork Sky's trace events
...
This CL remove the body of Sky's TraceEvent.h in favor of the version in base.
There's still some more of the system to unwind before we can remove all the
other boilerplate.
R=eseidel@chromium.org
Review URL: https://codereview.chromium.org/691663002
2014-10-30 09:39:46 -07:00
Elliott Sprehn
c9e551fda5
Remove more stuff from Widget.
...
This removes even more APIs from widget. This also removes some methods
that had been broken and made infinitely recursive on FrameView.
R=abarth@chromium.org
Review URL: https://codereview.chromium.org/684353002
2014-10-29 15:57:18 -07:00
Adam Barth
e000e53207
Remove Platform::cryptographicallyRandomValues
...
We can just call the base API directly.
R=esprehn@chromium.org
Review URL: https://codereview.chromium.org/691483005
2014-10-29 15:55:19 -07:00
Ojan Vafai
ce9aa787cb
Remove more frame-level scrolling machinery.
...
This is all dead code. No change in behavior.
R=esprehn@chromium.org
Review URL: https://codereview.chromium.org/678193005
2014-10-28 19:27:52 -07:00
Ojan Vafai
e246934fb9
Remove more scrolling methods from FrameView.
...
No change in behavior. Just deleting dead code.
Also removes ScrollAnimatorNone since it's unused.
We'll need to bring some of this back, but we'll
do that when we get rid of composited scrolling.
R=esprehn@chromium.org
Review URL: https://codereview.chromium.org/682363002
2014-10-28 17:38:08 -07:00
Ojan Vafai
a10806067d
Get rid of ScrollbarGroup. Sky doesn't use it.
...
More cleanup of dead code now that we don't have frame-level scrolling.
R=esprehn@chromium.org
Review URL: https://codereview.chromium.org/687553006
2014-10-28 17:37:23 -07:00
Adam Barth
74db9da5e1
Add inspect command to skydb
...
This CL adds an "inspect" command to skydb that injects the inspector module
into the page and prints some instructions for opening the inspector.
R=eseidel@chromium.org
Review URL: https://codereview.chromium.org/690433004
2014-10-28 17:08:25 -07:00
Elliott Sprehn
e379c7382a
Remove PageOverlays.
...
These were related to the inspector overlays, if we want to
do this in the future we should place mojo::Views over the
page in the sky debugger so sky itself doesn't need to manage
the overlay views.
R=ojan@chromium.org
Review URL: https://codereview.chromium.org/687003002
2014-10-28 15:44:00 -07:00
Elliott Sprehn
63d21b0287
Remove RenderWidget.
...
This is part of the old iframe and plugin system, we don't need it.
R=ojan@chromium.org
Review URL: https://codereview.chromium.org/682263003
2014-10-28 15:10:32 -07:00
Elliott Sprehn
2f329e05b0
Remove RenderPart.
...
This was part of the old plugin system, we don't need it.
R=ojan@chromium.org
Review URL: https://codereview.chromium.org/686903003
2014-10-28 15:01:27 -07:00
Eric Seidel
c32433111b
Remove almost all of Oilpan
...
The only things left are all the baseclasses
and macros in heap/Handle.h which are referenced
throughout all of core.
R=abarth@chromium.org
Review URL: https://codereview.chromium.org/686783002
2014-10-28 09:36:50 -07:00
Eric Seidel
64b5cb61a1
Remove all oilpan transitional types
...
I used do-webcore-rename from Blink/WebKit
which is very good at doing this kind
of search-replace.
Also removed toRefPrtNativeArray after
conversion since it previously had two
separate flavors. Both versions are no longer
used so I've removed the code until we
need one again.
https://www.irccloud.com/pastebin/5C16p5cE
is the diff I used to do-webcore-rename
TBR=abarth@chromium.org
2014-10-27 14:13:01 -07:00
Ojan Vafai
995c857ce6
Remove a bunch of frame-level scrolling machinery.
...
This just removing dead/noop code. No change in behavior.
R=abarth@chromium.org , esprehn@chromium.org
Review URL: https://codereview.chromium.org/681023002
2014-10-27 13:10:04 -07:00
Eric Seidel
049a036e83
Begin to remove heap/*
...
This makes Sky never call into the
Heap::init/shutdown methods and removes
most Heap:: and ThreadState:: calls throughout
the rest of Sky.
There is a *ton* more to remove after this.
R=abarth@chromium.org
Review URL: https://codereview.chromium.org/678003003
2014-10-27 12:41:12 -07:00
Ojan Vafai
f9e0a463af
Remove meta viewport and @viewport CSS rules.
...
We won't need configurations like this since we don't have things
like page zoom and a default width.
R=abarth@chromium.org
Review URL: https://codereview.chromium.org/654693004
2014-10-25 23:08:58 -07:00
Ojan Vafai
ac7ea65ede
Remove a bunch of unused or never-set settings.
...
Just mechanical changes. No change in behavior.
R=abarth@chromium.org
Review URL: https://codereview.chromium.org/681553003
2014-10-25 22:51:40 -07:00
Ojan Vafai
57a45f79ff
Remove pinch viewports.
...
Sky doesn't have concept of pinch zoom.
Remove more frame-level scrolling machinery.
R=esprehn@chromium.org
Review URL: https://codereview.chromium.org/681583002
2014-10-25 10:11:22 -07:00
Ojan Vafai
be4206ab28
Remove more frame-level scrolling machinery.
...
R=abarth@chromium.org
Review URL: https://codereview.chromium.org/680703002
2014-10-24 23:31:45 -07:00
Ojan Vafai
1728572222
Remove some more frame-level scrolling machinery.
...
This includes removing a bunch of scrolling methods and
accessors on Window.
R=abarth@chromium.org
Review URL: https://codereview.chromium.org/677223002
2014-10-24 23:16:28 -07:00
Adam Barth
e8c9ecc556
Use override and final instead of OVERRIDE and FINAL
2014-10-24 15:15:13 -07:00
Ojan Vafai
f45642cf8c
Get rid of ScrollView.
...
We only allow overflow scrolling. The frame isn't special.
This is a first step in making that happen. There's a lot of
code to remove after this patch, but this gets rid of
ScrollView and a bunch of frame-level scrolling code.
Had to add in a FrameWidget class so that Scrollbar.cpp had
a way of getting to FrameView::removeChild without pulling
a core class into platform. This might go away when we rip
out the Widget tree if we made it so that FrameView didn't
keep a list of Scrollbar instances.
Modified scrollbar.html to use overflow scrolling instead of
frame level scrolling. Once we get rid of the split between
Document and documentElement, we'll be able to make the root
element in the page scrollable as well (i.e. any child of the
Document).
R=abarth@chromium.org
Review URL: https://codereview.chromium.org/646273006
2014-10-23 20:20:25 -07:00
Elliott Sprehn
725950ed7f
Remove context menus.
...
R=ojan@chromium.org
Review URL: https://codereview.chromium.org/640143004
2014-10-23 17:10:06 -07:00
Elliott Sprehn
77074fa3b0
Remove remaining AX code.
...
R=abarth@chromium.org
Review URL: https://codereview.chromium.org/673993002
2014-10-23 16:26:34 -07:00
Elliott Sprehn
0ee669f48c
Rename WebKit.h/cpp to Sky.h/cpp
...
R=abarth@chromium.org
Review URL: https://codereview.chromium.org/676933002
2014-10-23 16:10:56 -07:00
Elliott Sprehn
4cbf7f6b1e
Remove the webkit prefix from idl properties and interfaces.
...
R=abarth@chromium.org
Review URL: https://codereview.chromium.org/676923002
2014-10-23 16:02:10 -07:00
Adam Barth
45e9dc8ca4
Remove WebThread
...
We still have WebThread::Task, but WebThread is now gone.
R=esprehn@chromium.org
Review URL: https://codereview.chromium.org/673033002
2014-10-23 14:37:09 -07:00
Elliott Sprehn
2b1e6cfc42
Remove overflowchanged event.
...
R=ojan@chromium.org
Review URL: https://codereview.chromium.org/672353002
2014-10-23 14:29:40 -07:00
Adam Barth
fb0dcf788b
Remove the last WebThread task observer
...
We now observe the message loop and the mojo message pump directly.
R=ojan@chromium.org , eseidel@chromium.org
Review URL: https://codereview.chromium.org/673783006
2014-10-23 14:22:05 -07:00
Adam Barth
46aea7fd1b
Fix the build
2014-10-23 14:16:37 -07:00
Elliott Sprehn
22d3fe4be3
Remove WebSelector, it's not used.
...
R=abarth@chromium.org
Review URL: https://codereview.chromium.org/672323002
2014-10-23 14:07:53 -07:00
Elliott Sprehn
8209d97c51
Remove postMessage, MessageChannel and MessagePort.
...
Sky uses Mojo services to communicate between embedded applications, not
postMessage and its friends.
R=abarth@chromium.org
Review URL: https://codereview.chromium.org/676723003
2014-10-23 13:17:50 -07:00
Adam Barth
c1d26b1d31
Remove RecordingImageBufferSurface
...
We don't enable this runtime setting.
R=ojan@google.com , ojan@chromium.org
Review URL: https://codereview.chromium.org/678483002
2014-10-23 12:56:33 -07:00
Adam Barth
ae72930937
Open the Sky
2014-10-23 11:17:19 -07:00