Commit Graph

4471 Commits

Author SHA1 Message Date
Brian Nicholson
c808f30b6b Bug 840823 - Check whether new tabs were made from stubs to prevent removal race condition. r=mfinkle 2013-02-12 23:48:32 -08:00
Brian Nicholson
f440bf4d18 Bug 840601 - Clear saved reader mode page in tab destroy. r=kats 2013-02-12 23:44:40 -08:00
Sriram Ramasubramanian
03a453be2f Bug 838807: Replace reader mode icons. [r=bnicholson] 2013-02-12 21:11:05 -08:00
Sriram Ramasubramanian
f4691fed2a Bug 838807: Replace url-bar icons. [r=bnicholson] 2013-02-12 21:10:47 -08:00
Sriram Ramasubramanian
3782e4081d Bug 828853: Sync tabs icon closes tabs-ui, when sync is not setup. [r=mfinkle]
--HG--
extra : rebase_source : 703f8bc15630186948d5d553238a47edac9a8287
2013-02-04 15:26:50 -08:00
Sriram Ramasubramanian
df9f100b0e Bug 824483: about:home is cut off in landscape mode. [r=wesj] 2013-02-12 15:32:13 -08:00
Geoff Brown
c0324f6340 Bug 770483 - Re-enable robocop testAboutPage; r=edmorley; DONTBUILD 2013-02-12 11:27:18 -07:00
Ed Morley
fb6aef7abd Merge latest green inbound changeset to mozilla-central 2013-02-12 14:43:06 +00:00
Tetsuharu OHZEKI
1604e52a1c Bug 840312 - Cache the result of Tab.metadata. r=kats 2013-02-12 16:19:43 +09:00
Kartikaya Gupta
0636997099 Bug 833777 - Guard against selectedTab being null when Gecko goes into the background. r=bnicholson 2013-02-11 23:24:41 -05:00
Brad Lassey
24fd7d1281 bug 839380 – zh-hk locale should use zh-tw translation instead of zh-cn r=jchen a=akeybl 2013-02-11 23:08:19 -05:00
Tetsuharu OHZEKI
a0025f82c6 Bug 833003 - Use metadata.scaleRatio as its value if viewport metadata.defaultZoom has no value. r=kats 2013-02-11 18:15:18 -05:00
Terry Liu
9d7a70ceee Bug 823639 - Disable keyboard suggestions in bookmark_edit.xml. r=sriram 2013-02-10 13:35:42 -05:00
Ryan VanderMeulen
54da5d3668 Backout 35d48d9d80d5 (bug 752982) for landing without proper review. 2013-02-11 14:33:27 -05:00
Mark Finkle
bb58390934 Bug 838745 - Add a proper zero-based array size check to keep promo from crashing r=bnicholson 2013-02-09 16:48:32 -05:00
Richard Newman
e31b4bd6e6 Bug 839580 - getOpenURIIntent uses an API level 16 method. r=bnicholson 2013-02-08 15:30:28 -08:00
Jim Chen
997a9f5486 Bug 826053 - Avoid reporting duplicate ANRs; r=blassey 2013-02-08 18:17:42 -05:00
Jim Chen
b34df63443 Bug 826053 - Add main ANRReporter logic; r=blassey 2013-02-08 18:17:42 -05:00
Jim Chen
dea4b5c827 Bug 826053 - Add ANRReporter supporting methods; r=blassey 2013-02-08 18:17:42 -05:00
Jim Chen
e465227217 Bug 826053 - Add GeckoAppInfo for telemetry ping metadata; r=blassey 2013-02-08 18:17:42 -05:00
Jim Chen
fcc549b616 Bug 826053 - Add skeletal ANRReporter; r=blassey 2013-02-08 18:17:41 -05:00
Kartikaya Gupta
c3a3264303 Bug 839622 - Move websms backend JNI bindings so that they are not built if websms is not enabled. r=blassey 2013-02-08 16:42:14 -05:00
Kartikaya Gupta
6218e14d70 Bug 839622 - Remove a native function that hasn't been used since bug 735230, and the unneeded setSurfaceView implementation. r=cpeterson 2013-02-08 16:42:13 -05:00
Kartikaya Gupta
cb7f905fba Bug 839622 - Clean up temp files introduced in bug 794982. r=cpeterson 2013-02-08 16:42:13 -05:00
Jim Chen
54c6925612 Bug 835906 - Handle off-thread GeckoEditable and GeckoInputConnection calls; r=cpeterson 2013-02-08 16:07:12 -05:00
Jim Chen
4292b3f95e Bug 835906 - Let GeckoInputConnection switch to background thread; r=cpeterson 2013-02-08 16:07:12 -05:00
Jim Chen
40f2aa1b7f Bug 835906 - Add ability for GeckoEditable to switch to a different thread; r=cpeterson 2013-02-08 16:07:12 -05:00
Jim Chen
c1dbb9b2e8 Bug 835906 - Refer to IC thread instead of UI thread in existing IME code; r=cpeterson 2013-02-08 16:07:05 -05:00
Mark Capella
7bdac62340 Bug 836451 - Add distribution info to about:firefox, r=margaret 2013-02-08 14:29:21 -05:00
Mark Capella
d7645cf0cd Bug 839359 - Crash -- java.lang.NullPointerException, r=kats 2013-02-08 10:22:35 -05:00
Kartikaya Gupta
340661f4dc Bug 777468 - Move ownership of TouchEventHandler from LayerView to JavaPanZoomController. r=Cwiiis
This patch has a bunch of semi-independent changes that unfortunately
couldn't be split apart without introducing hacks to make stuff build
on the intermediate patches. The main changes are:
- Moving TouchEventHandler from LayerView to JavaPanZoomController
- Registering the touch interceptor on the LayerView rather than the
  TouchEventHandler
- Moving the Tab:HasTouchListener handler from GeckoApp to JPZC

The net effect of all of this is that the TouchEventHandler is hidden
behind the PanZoomController interface and not accessible to GeckoApp
or GeckoAppShell.

Additionally, some of the JPZC methods were renamed from onXXX to
handleXXX to maintain the convention that onXXX methods are "interface"
methods (i.e. exposed to arbitrary other code) whereas handleXXX
methods are private/package and should only be called in very specific
ways.
2013-02-08 09:13:09 -05:00
Kartikaya Gupta
5eeb9c6f6a Bug 777468 - Rename PanZoomController to JavaPanZoomController and extract a new PanZoomController interface. r=Cwiiis
--HG--
rename : mobile/android/base/gfx/PanZoomController.java => mobile/android/base/gfx/JavaPanZoomController.java
2013-02-08 09:12:59 -05:00
Kartikaya Gupta
8edd8b627e Bug 777468 - Move mobile/android/base/ui/* to mobile/android/base/gfx/. r=Cwiiis
--HG--
rename : mobile/android/base/ui/Axis.java => mobile/android/base/gfx/Axis.java
rename : mobile/android/base/ui/PanZoomController.java => mobile/android/base/gfx/PanZoomController.java
rename : mobile/android/base/ui/PanZoomTarget.java => mobile/android/base/gfx/PanZoomTarget.java
rename : mobile/android/base/ui/SimpleScaleGestureDetector.java => mobile/android/base/gfx/SimpleScaleGestureDetector.java
rename : mobile/android/base/ui/SubdocumentScrollHelper.java => mobile/android/base/gfx/SubdocumentScrollHelper.java
2013-02-08 09:11:43 -05:00
Kartikaya Gupta
5b302ab8f2 Bug 777468 - Remove unneeded dependency on PanZoomController. r=Cwiiis 2013-02-08 09:11:37 -05:00
Brian Nicholson
dd4a4652e1 Bug 838583 - Scale favicons in the history tab. r=mfinkle
--HG--
rename : dom/browser-element/BrowserElementChildPreload.js => dom/browser-element/BrowserElementChild.js
extra : rebase_source : f5b53cdab96e42b05c3299e043e8ff5a1111a70c
2013-02-07 22:14:06 -08:00
Mark Finkle
2c73228da4 Bug 839242 - Remove unused onunload handler from about:apps r=margaret 2013-02-08 00:36:50 -05:00
Mark Finkle
7ae04ae194 Bug 838745 - Prevent crashing if a promo type is dropped r=bnicholson 2013-02-08 00:36:48 -05:00
Kartikaya Gupta
ffd068649e Bug 839325 - Make GeckoViewsFactory use a HashMap instead of a table of string compares. r=sriram 2013-02-07 23:35:55 -05:00
Jim Chen
ec93de981f Bug 836589 - Lazily switch between AwesomeBar search and URL modes; r=blassey 2013-02-07 18:17:06 -05:00
Sriram Ramasubramanian
ce865bb2c6 Bug 818072: Back/Forward looks disabled. [r=mfinkle] [needs-clobber] 2013-02-07 14:23:33 -08:00
Sriram Ramasubramanian
57410b82eb Bug 838807: Remove tablet specific tabs-ui icons. [r=mfinkle] 2013-02-07 13:46:36 -08:00
Sriram Ramasubramanian
7e6443e07b Bug 838748: Change pressed state of tabs-ui rows. [r=mfinkle] 2013-02-07 12:48:28 -08:00
Sriram Ramasubramanian
7f3bacbcb4 Bug 838735: Remove transparency from inactive tabs. [r=mfinkle] 2013-02-07 12:35:03 -08:00
Sriram Ramasubramanian
21eb7efa71 Bug 838807: Replace tab-carats. [r=mfinkle] 2013-02-07 12:14:51 -08:00
Sriram Ramasubramanian
2961ecf054 Bug 838807: Flatten all icons. [r=mfinkle]
--HG--
rename : mobile/android/base/resources/drawable-large-hdpi-v11/ic_menu_bookmark_add.png => mobile/android/base/resources/drawable-xlarge-hdpi-v11/ic_menu_bookmark_add.png
rename : mobile/android/base/resources/drawable-large-hdpi-v11/ic_menu_bookmark_remove.png => mobile/android/base/resources/drawable-xlarge-hdpi-v11/ic_menu_bookmark_remove.png
rename : mobile/android/base/resources/drawable-large-mdpi-v11/ic_menu_bookmark_add.png => mobile/android/base/resources/drawable-xlarge-mdpi-v11/ic_menu_bookmark_add.png
rename : mobile/android/base/resources/drawable-large-mdpi-v11/ic_menu_bookmark_remove.png => mobile/android/base/resources/drawable-xlarge-mdpi-v11/ic_menu_bookmark_remove.png
rename : mobile/android/base/resources/drawable-large-xhdpi-v11/ic_menu_bookmark_add.png => mobile/android/base/resources/drawable-xlarge-xhdpi-v11/ic_menu_bookmark_add.png
rename : mobile/android/base/resources/drawable-large-xhdpi-v11/ic_menu_bookmark_remove.png => mobile/android/base/resources/drawable-xlarge-xhdpi-v11/ic_menu_bookmark_remove.png
2013-02-06 13:21:23 -08:00
Kartikaya Gupta
a5e2d190b0 Bug 837821 - Guard against exception when calling scheduleComposite before libxul is loaded. r=gbrown 2013-02-07 10:17:33 -05:00
Kartikaya Gupta
32e789c81b Bug 837821 - When calling a JNI function from a library that hasn't been loaded yet, throw a Java exception. r=glandium 2013-02-07 10:17:27 -05:00
Kartikaya Gupta
079ab4de81 Bug 794982 - Autogenerate libxul JNI stubs and fail build if they change. r=glandium 2013-02-07 09:37:06 -05:00
Kartikaya Gupta
21d8277af9 Bug 794982 - Extract non-libxul native JNI functions from GeckoAppShell. r=glandium, cpeterson 2013-02-07 09:37:06 -05:00
Christian Vielma
656fabe516 Bug 454880 - Allow access to recent history through back/forward buttons. r=bnicholson
--HG--
extra : rebase_source : c871a1f0b464db10b5bd22a27f7783ba1c53c213
2013-02-06 22:53:01 -05:00