Sotaro Ikeda
499f383427
Bug 1186000 - Support screen mirroring to HDMI display on gonk r=mwu,mattwoodrow
2015-08-08 13:50:47 -07:00
Masayuki Nakano
9f892563ed
Bug 1192156 Separate IME specific structs, classes and enums from nsIWidget.h to IMEData.h r=roc
...
--HG--
rename : widget/nsIWidget.h => widget/IMEData.h
2015-08-09 00:47:19 +09:00
Ryan VanderMeulen
363a9ac97a
Merge inbound to m-c. a=merge
2015-08-07 16:02:43 -04:00
Petr Jasicek
e19231c364
Bug 1160154 - Decrease padding between icons in the personal toolbar with Gtk3 by using "image-button" css style class. r=karlt
...
CLOSED TREE
--HG--
extra : rebase_source : b8c2ed8403294ac2b1931141794f184af2a11cbd
2015-08-07 01:09:00 -04:00
Xidorn Quan
815ed861e5
Bug 1188322 - Always hide menubar as well as dock for fullscreen on OS X whatever the screen is. r=mstange
...
--HG--
extra : source : 9beba24463ba85ab0ca12d0c80786a9d7915f208
2015-08-07 13:49:12 +10:00
Wes Kocher
83a7cbf448
Merge m-c to inbound, a=merge
2015-08-06 18:11:16 -07:00
Ryan VanderMeulen
6b37d9c465
Merge m-c to fx-team. a=merge
2015-08-06 15:53:46 -04:00
Jared Wein
05a882f177
Bug 1007063 - Show virtual (on-screen) keyboard in Windows 8 and higher when text fields are focused if physical keyboards are not present. r=jimm r=masayuki r=m_kato
2015-08-05 10:38:51 -04:00
Lee Salzman
7ac4d202b1
Bug 1190935 - Fix race condition in gtk window EndRemoteDrawingInRegion. r=nical
2015-08-06 11:02:03 -04:00
Masayuki Nakano
61074e4e20
Bug 1191213 nsBaseWidget::NotifyWindowMoved() shouldn't notify IME when native IME handler doesn't have focus r=m_kato
2015-08-06 15:57:58 +09:00
Milan Sreckovic
1878a205d0
Bug 1191404 - Update the comments to avoid confusion about what happens with blocklisting when the OS is unknown. No code change. r=milan
2015-08-05 10:39:00 +02:00
Wes Kocher
4d0e220d7f
Merge b2ginbound to central, a=merge
2015-08-05 16:45:41 -07:00
Carsten "Tomcat" Book
dcc3c5d093
Merge mozilla-central to b2g-inbound
2015-08-05 13:40:29 +02:00
Boris Chiou
2abd17130d
Bug 1180657 - Use hwc directly on GonkDisplayICS. r=sotaro
2015-08-03 19:43:00 +02:00
Masayuki Nakano
05063f4350
Bug 1188442 IMMHandler::GetSelection() should use static Selection instance when IME doesn't have focus and return its or mSelection's reference r=emk
2015-08-04 17:05:25 +09:00
Birunthan Mohanathas
7315345693
Bug 1191100
- Remove XPIDL signature comments in .cpp files. r=ehsan
...
Comment-only so DONTBUILD.
2015-08-04 16:17:36 -07:00
David Anderson
a976b3be5c
Don't create a D3D11 compositor device on content processes. (bug 1183910 part 8, r=bas,mattwoodrow)
2015-08-05 02:45:06 -07:00
Masayuki Nakano
07330577b7
Bug 1187579 Enable TSF in e10s mode r=m_kato
2015-08-05 18:37:47 +09:00
Robert O'Callahan
efd3df82d6
Bug 1184842. Add aNewValue to nsIMutationObserver::AttributeWillChange. r=peterv
...
--HG--
extra : commitid : 8C2GnpowyCS
extra : rebase_source : 3f2948df48fe13f65425345f7b674e4e4869c861
2015-07-25 18:05:19 +12:00
Robert O'Callahan
d5d49432af
Bug 1184842. Allow BeforeSetAttr to preparse aValue. r=peterv
...
We will pass the preparsed value into AttributeWillChange.
--HG--
extra : commitid : HCiY4DRKWkC
extra : rebase_source : aa17a819a20578322380d388299279e4e41a690b
2015-08-01 17:14:06 +12:00
Robert O'Callahan
1e49288224
Bug 1184842. Pass aOldValue to all mutation observers. r=peterv
...
--HG--
extra : commitid : CYjyQn3BAqb
extra : rebase_source : ef153c7cf1e08a058d8de6a76dbe7dc343a299fb
2015-07-25 18:01:19 +12:00
Xidorn Quan
7237b2a3ff
Bug 1190669 part 4 - Force stop transition animation when the cocoa window gets destroyed. r=smichaud
...
--HG--
extra : source : 5060b641eec39b1c02d1d15fb949c13e09bfab5a
2015-08-06 15:37:48 +10:00
Xidorn Quan
3b13439b32
Bug 1191112 part 2 - Set the destroyed flag on nsCocoaWindow when destroyed. r=smichaud
...
--HG--
extra : source : d06d4277d3b203f2053c2aadaed7e5beb801023f
2015-08-06 15:37:48 +10:00
Wes Kocher
de08e9e79c
Merge m-c to inbound, a=merge
2015-08-05 16:47:52 -07:00
Trevor Saunders
02335958d9
no bug - fix case of nsIDocShell.h in WindowsUIUtils.cpp
2015-08-05 17:19:45 -04:00
Jim Chen
11d1c03111
Bug 1187552 - Make NativeJSContainer use direct ownership model; r=snorp
...
Make NativeJSContainer/NativeJSObject Java objects own their
corresponding C++ objects directly, to reduce an extra
allocation/deallocation for each object and to simplify code.
2015-08-04 17:47:28 -04:00
Jim Chen
81d1a5cdea
Bug 1187552 - Support direct ownership of C++ objects by Java objects; r=snorp
...
Add a direct ownership model where the Java object owns the
corresponding C++ object directly, in addition to the WeakPtr model
where the Java object owns a WeakPtr to the C++ object. The WeakPtr
model is chosen when the implementing C++ class inherits from
SupportsWeakPtr. Otherwise, the direct ownership model is chosen. Under
the direct ownership model, a UniquePtr object must be used to attach
the containing C++ object to a Java object, to ensure ownership is
passed on to the Java object.
2015-08-04 17:47:28 -04:00
Jim Chen
d900eeb8ba
Bug 1187088 - Use UNIFIED_SOURCES in widget/android; r=snorp
...
Fix some compiling errors in unified mode due to header dependency
issues.
2015-08-04 17:47:28 -04:00
Jim Chen
30e5b85a48
Bug 1186467 - Rewrite NativeJSContainer to use new native JNI scheme; r=snorp
...
This patch makes NativeJSContainer use per-instance native methods.
NativeJSContainer is also updated to use smart JNI reference classes.
2015-08-04 17:47:28 -04:00
Jim Chen
8739443257
Bug 1186467 - Update generated JNI bindings; r=me
2015-08-04 17:47:28 -04:00
Jim Chen
d836e4a08d
Bug 1186467 - Add some JNI utilities for convenience; r=snorp
...
This patch adds:
* Conversion operator from String::Param to String::LocalRef.
* More overloads of the jni::ThrowException function.
* name members to built-in types like jni::Object, jni::String, etc.
This allows using jni::Accessors::EnsureClassRef on built-in types
to get built-in class refs (e.g. jclass for java/lang/String).
* Ability to implicitly convert LocalRef<Cls> to LocalRef<Object>
* Fixes for bugs in LocalRef/GlobalRef where new refs are not created.
* Fixes for inaccurate uses of mozilla::Forward in favor of mozilla::Move
2015-08-04 17:47:28 -04:00
Carsten "Tomcat" Book
36856e8a64
Backed out changeset 427cfffcb5b7 (bug 1000870)
...
--HG--
extra : rebase_source : 5f80fbd07b72e9ac0a639765baf463479b4fa145
2015-08-03 16:37:18 +02:00
Carsten "Tomcat" Book
19fce95294
Merge mozilla-central to fx-team
2015-08-07 13:21:30 +02:00
Mark Capella
0d84a92357
Bug 1191161 - p3 - Surprise update-generated-wrappers changes, r=jchen
2015-08-07 02:09:08 -04:00
Maksim Lebedev
66edccbdc9
Bug 1000870 - Add some features in testing system. r=smaug
2015-05-19 07:03:00 +02:00
Masayuki Nakano
e0bbfb1c32
Bug 1050644 part.2 Hack ITextStoreACP::GetTextExt()'s offset for some Chinese TIPs of MS r=emk
2015-08-03 15:15:30 +09:00
Masayuki Nakano
4fcbf79817
Bug 1050644 part.1 Add methods to check whether the active TIP is Chinese TIP which deosn't show candidate window in e10s mode r=emk
2015-08-03 15:15:30 +09:00
Masayuki Nakano
329cd406f9
Bug 1187566 TSFTextStore::Content should compute mMinTextModified Offset only with the latest composition string and original composition string, and also the hack should be enabled on Win10 r=emk
2015-08-03 15:15:30 +09:00
Neil Rashbrook
bbe2316f05
Bug 1189698 Potential race condition when shutting down the old player thread r=jimm
2015-08-01 14:03:43 +01:00
Gian-Carlo Pascutto
1634fa4444
Bug 1189058 - Don't spin the Event loop while setting up WebRTC + Java. r=snorp
2015-07-30 19:53:38 +02:00
Xidorn Quan
13a6670d6d
Bug 1173930 - Not invoke FullscreenChange callback on OS X if state is not changed. r=smichaud
...
--HG--
extra : source : 7d61c973225d4f65b4bb7e3c0eec584b98f16bf5
2015-08-01 10:49:19 +10:00
Carsten "Tomcat" Book
060e1dcfe0
Backed out changeset 7edc58c272f1 (bug 1075089) for causing OS X 10.6 marionette failures in test_single_finger_desktop.py testSingleFingerMouse.test_double_tap on a CLOSED TREE
2015-07-31 14:49:40 +02:00
Carsten "Tomcat" Book
7005e3bf85
Merge mozilla-central to mozilla-inbound on a CLOSED TREE
2015-07-31 13:50:49 +02:00
Carsten "Tomcat" Book
7b02077e1e
merge mozilla-inbound to mozilla-central a=merge
2015-07-31 12:06:51 +02:00
Andrew Comminos
5bd79fe54d
Bug 1187237 - Correct range slider drawing on GTK3. r=karlt
...
--HG--
extra : rebase_source : 0f3a2416b4ca08c913b51303f69e06b8cd859324
2015-07-30 11:29:00 +02:00
Nick Robson
58f8aa5dac
Bug 1075089 - Moved popup menu frame offset to LookAndFeel, fixed default offset for OS X. r=enn
2015-07-30 15:00:00 +02:00
Sebastian Kaspari
d7f1de6d04
Bug 1187260 - Simplify RestrictedProfiles class. r=ally
...
This patch transforms RestrictedProfiles to delegate isAllowed() and
canLoadUrl() calls to an object implementing the RestrictionConfiguration
interface.
DefaultConfiguration, GuestProfileConfiguration and
RestrictedProfileConfiguration are implementing RestrictionConfiguration
and will take care of handling the restrictions for the different types
of profiles.
--HG--
extra : commitid : LQ2YsdyG6oR
extra : rebase_source : 015f7f02c6e7fded16d3811a71f0ae23547e5f71
2015-07-24 19:47:31 +02:00
Mike Conley
20ee63d181
Bug 1145916 - [e10s] Defer starting a GTK Print Job during printer enumeration until the next tick. r=karlt
...
Before, we were calling nsDeviceContextSpecGTK::StartPrintJob within the
gtk_enumerate_printers callback function as soon as we found the printer
we wanted to print from. This was causing the GTK printing backend to get
confused about what the capabilities of the selected printer were when running
in the content process, due to https://bugzilla.gnome.org/show_bug.cgi?id=753041 .
This moves the call to StartPrintJob to the next tick of the event loop.
--HG--
extra : commitid : CZ5P0hh51QC
extra : rebase_source : 279c6c56a2a22b42d5bbf094fd976a4d8f9c8031
2015-07-27 17:11:46 -04:00
Matt Woodrow
d2d5e5b9a3
Bug 1150944 - Add a flags parameter to GLContextProvider functions instead of a bool. r=jgilbert
2015-07-29 16:35:55 -04:00
Steven Michaud
bfedf00a51
Bug 1188425 - Add a pref to allow insecure text input, thereby avoiding crashes at [ChildView keyDown:] in non-release builds. r=spohl
2015-07-29 16:31:14 -05:00