Commit Graph

11753 Commits

Author SHA1 Message Date
Mark Banner
2a49321b2b Bug 1212083 - Part 1. Remove the direct calls UI from Loop. r=mikedeboer 2015-10-09 12:14:44 +01:00
Mark Banner
9c9732c387 Bug 1213213 - run-all-loop-tests.sh isn't catching all mochitest failures. r=mikedeboer 2015-10-09 12:14:44 +01:00
Gijs Kruitbosch
60a1296154 Bug 1194692 - fix some cookie parsing issues in the IE/Edge cookie importer code, r=MattN 2015-09-28 22:30:20 +01:00
Gijs Kruitbosch
e670ef0eae Bug 1212297 - improve error handling in Chrome bookmarks migration code, r=MattN 2015-10-07 13:24:50 +01:00
Wes Kocher
c9e71127b6 Merge m-c to fx-team, a=merge 2015-10-08 14:36:57 -07:00
Wes Kocher
1d19981c05 Merge inbound to central, a=merge 2015-10-08 14:29:04 -07:00
Mark Banner
a9f07aea92 Bug 1212787 - Revert Loop's conversation toolbar button sizes due to bug 1209632 causing a visual regression. r=dmose 2015-10-08 21:25:19 +01:00
Mark Banner
793e6f7fb8 Follow-up to bug 1212272 - use the correct cp command. r=dmose 2015-10-08 21:25:19 +01:00
J. Ryan Stinnett
2ed7c81c3f Bug 1212153 - Clean up Cu.isModuleLoaded after migration. r=bgrins 2015-10-08 15:25:23 -05:00
Carsten "Tomcat" Book
e408ab7109 Merge m-c to fx-team 2015-10-08 16:11:56 +02:00
Carsten "Tomcat" Book
516133123e merge mozilla-inbound to mozilla-central a=merge 2015-10-08 15:26:54 +02:00
Carsten "Tomcat" Book
3c9409de99 Merge m-c to mozilla-inbound 2015-10-08 16:11:21 +02:00
Paolo Amadini
f97923b796 Bug 1179961 - Use a lock with a strikethrough for HTTP pages that have password fields in the Control Center. r=ttaubert,bgrins 2015-10-07 20:50:40 +01:00
David Critchley
fa9d6246c1 Bug 1209632 - Removing footer from Loop Standalone, moved Logo to mediaLayoutView. r=Standard8,ui-review=Sevaan 2015-10-07 19:48:28 +01:00
Wes Kocher
5430de17c9 Merge m-c to fx-team a=merge 2015-10-07 11:33:10 -07:00
Mark Banner
f01ddc3e78 Bug 1212272 - 'make dist' for the Loop standalone doesn't update the css and supplementary files properly. r=dmose. NPOTB DONTBUILD 2015-10-07 19:20:03 +01:00
Wes Kocher
cd3d631b44 Merge inbound to m-c a=merge 2015-10-07 10:29:41 -07:00
Wes Kocher
ebdf2aedae Backed out changeset 1f51d1614b9a (bug 1207245) 2015-10-07 10:19:31 -07:00
Wes Kocher
a7c3e82868 Backed out changeset 91d4539e00ce (bug 1207245) 2015-10-07 10:19:19 -07:00
Wes Kocher
38ab63ea8f Merge fx-team to central, a=merge 2015-10-07 09:58:09 -07:00
Nathan Froyd
0b009681ad Bug 1207245 - part 6 - rename nsRefPtr<T> to RefPtr<T>; r=ehsan; a=Tomcat
The bulk of this commit was generated with a script, executed at the top
level of a typical source code checkout.  The only non-machine-generated
part was modifying MFBT's moz.build to reflect the new naming.

 # The main substitution.
find . -name '*.cpp' -o -name '*.cc' -o -name '*.h' -o -name '*.mm' -o -name '*.idl'| \
    xargs perl -p -i -e '
 s/nsRefPtr\.h/RefPtr\.h/g; # handle includes
 s/nsRefPtr ?</RefPtr</g;   # handle declarations and variables
'

 # Handle a special friend declaration in gfx/layers/AtomicRefCountedWithFinalize.h.
perl -p -i -e 's/::nsRefPtr;/::RefPtr;/' gfx/layers/AtomicRefCountedWithFinalize.h

 # Handle nsRefPtr.h itself, a couple places that define constructors
 # from nsRefPtr, and code generators specially.  We do this here, rather
 # than indiscriminantly s/nsRefPtr/RefPtr/, because that would rename
 # things like nsRefPtrHashtable.
perl -p -i -e 's/nsRefPtr/RefPtr/g' \
     mfbt/nsRefPtr.h \
     xpcom/glue/nsCOMPtr.h \
     xpcom/base/OwningNonNull.h \
     ipc/ipdl/ipdl/lower.py \
     ipc/ipdl/ipdl/builtin.py \
     dom/bindings/Codegen.py \
     python/lldbutils/lldbutils/utils.py

 # In our indiscriminate substitution above, we renamed
 # nsRefPtrGetterAddRefs, the class behind getter_AddRefs.  Fix that up.
find . -name '*.cpp' -o -name '*.h' -o -name '*.idl' | \
    xargs perl -p -i -e 's/nsRefPtrGetterAddRefs/RefPtrGetterAddRefs/g'

if [ -d .git ]; then
    git mv mfbt/nsRefPtr.h mfbt/RefPtr.h
else
    hg mv mfbt/nsRefPtr.h mfbt/RefPtr.h
fi
2015-10-07 16:50:25 -04:00
Nathan Froyd
e7b5fc0f60 Bug 1207245 - part 3 - switch all uses of mozilla::RefPtr<T> to nsRefPtr<T>; r=ehsan
This commit was generated using the following script, executed at the
top level of a typical source code checkout.

 # Don't modify select files in mfbt/ because it's not worth trying to
 # tease out the dependencies currently.
 #
 # Don't modify anything in media/gmp-clearkey/0.1/ because those files
 # use their own RefPtr, defined in their own RefCounted.h.
find . -name '*.cpp' -o -name '*.h' -o -name '*.mm' -o -name '*.idl'| \
    grep -v 'mfbt/RefPtr.h' | \
    grep -v 'mfbt/nsRefPtr.h' | \
    grep -v 'mfbt/RefCounted.h' | \
    grep -v 'media/gmp-clearkey/0.1/' | \
    xargs perl -p -i -e '
 s/mozilla::RefPtr/nsRefPtr/g; # handle declarations in headers
 s/\bRefPtr</nsRefPtr</g; # handle local variables in functions
 s#mozilla/RefPtr.h#mozilla/nsRefPtr.h#; # handle #includes
 s#mfbt/RefPtr.h#mfbt/nsRefPtr.h#;       # handle strange #includes
'

 # |using mozilla::RefPtr;| is OK; |using nsRefPtr;| is invalid syntax.
find . -name '*.cpp' -o -name '*.mm' | xargs sed -i -e '/using nsRefPtr/d'

 # RefPtr.h used |byRef| for dealing with COM-style outparams.
 # nsRefPtr.h uses |getter_AddRefs|.
 # Fixup that mismatch.
find . -name '*.cpp' | \
    xargs perl -p -i -e 's/byRef/getter_AddRefs/g'
2015-10-07 15:05:02 -04:00
Carsten "Tomcat" Book
036e6d2fa3 Backed out 2 changesets (bug 1202902) to recking bug 1202902 to be able to reopen inbound on a CLOSED TREE
Backed out changeset 647025383676 (bug 1202902)
Backed out changeset d70c7fe532c6 (bug 1202902)
2015-10-07 14:03:21 +02:00
Sebastian Hengst
190bccea7d Backed out changeset c6b267589d0d (bug 1202902) for Mulet Reftest, W3C Platform Test and other failures. r=backout a=backout on a CLOSED TREE 2015-10-07 13:36:26 +02:00
Ed Lee
d36c09b4b9 Bug 1211563 - Invite buttons should be underneath "Invite a friend" text in popped-out view [r=Standard8] 2015-10-05 15:34:21 -07:00
Jed Davis
d19e615ca4 Bug 1201935 - Allow reading from TmpD in OS X content processes. r=smichaud 2015-10-07 13:41:00 +02:00
Marco Bonardo
f4ec8ceb6b Bug 1208063 - The name input field on the new bookmark dialog doesn't get focus. r=adw 2015-10-07 15:40:13 +02:00
Ed Lee
ae6794d1e7 Bug 1211592 - The Copy Link and Email Link buttons show cursor:default, but the other buttons (Camera,Mic,Share Screen,Settings) show cursor:pointer [rs=jaws] 2015-10-05 15:24:32 -07:00
Mark Banner
5dac9d75bd Bug 1208047 - Close the dropdown menu for sharing on Loop's conversation window as soon as an item is clicked, rather than leaving it open in a potentially confusing state. r=mikedeboer 2015-10-06 16:05:50 +01:00
Mike Conley
25e638e3ae Bug 1110511 - Move tab-crashing test helper function to BrowserTestUtils.jsm r=felipe 2015-09-29 16:44:50 -04:00
Carsten "Tomcat" Book
dfbe2f8947 merge mozilla-inbound to mozilla-central a=merge 2015-10-06 12:01:35 +02:00
Kit Cambridge
f87c3cbd23 Bug 1192458, Part 1 - Consolidate push and desktop notification permissions. r=nsm,wchen,MattN 2015-10-05 16:39:34 -07:00
Wes Kocher
29a89edbfa Backed out 6 changesets (bug 1110511) for automation timeouts in mochitest-bc suites
Backed out changeset eddfd7f32a1c (bug 1110511)
Backed out changeset 0eb0dda094b3 (bug 1110511)
Backed out changeset 8e20cd68ca78 (bug 1110511)
Backed out changeset c7b983f65568 (bug 1110511)
Backed out changeset 219d86f78b6b (bug 1110511)
Backed out changeset 0e055b648e10 (bug 1110511)
2015-10-05 16:38:03 -07:00
Matthew Noorenberghe
c599cb9f4f Bug 1208295 - Open content preferences after receiving notifications-open-settings. r=jaws 2015-09-25 13:18:29 -07:00
Gijs Kruitbosch
55d97c9e78 Bug 1211456 - remove usage of getImageURLForResolution from search component, r=florian 2015-10-05 15:39:16 +01:00
Mike Conley
54026d078d Bug 1110511 - Move tab-crashing test helper function to BrowserTestUtils.jsm r=felipe 2015-09-29 16:44:50 -04:00
Wes Kocher
aefeda7d18 Backed out 3 changesets (bug 1208295) for build bustage CLOSED TREE
Backed out changeset ba930740225e (bug 1208295)
Backed out changeset 54f38580e0b8 (bug 1208295)
Backed out changeset a5907e5982a8 (bug 1208295)
2015-10-05 12:20:47 -07:00
Matthew Noorenberghe
ee423a5cc2 Bug 1208295 - Open content preferences after receiving notifications-open-settings. r=jaws 2015-09-25 13:18:29 -07:00
Carsten "Tomcat" Book
12369728f5 Backed out 1 changesets (bug 1202902) for causing merge conflicts to mozilla-central
Backed out changeset cfc1820361f5 (bug 1202902)
2015-10-07 12:13:45 +02:00
Mark Banner
10be83046a Bug 1212348 - Loop's RoomList view requires user profile data passed in when it doesn't need to. r=mikedeboer 2015-10-08 11:30:06 +01:00
Mark Banner
7f678b744e Bug 1212074 - Update Mochitests for Loop now that the tabs are removed from the panel. r=mikedeboer 2015-10-08 11:30:06 +01:00
David Critchley
9c9a64eb2d Bug 1212074 - Remove the tabs from Loop's panel. r=Standard8 2015-10-08 11:30:06 +01:00
Manuel Casas
04ae8a04ae Bug 1200693 - Modify aspect ratio so that top and bottom black bars are not seen when waiting alone in the conversation window. r=Standard8 2015-10-08 11:30:05 +01:00
Wes Kocher
1f5b59bcd7 Merge m-c to inbound, a=merge CLOSED TREE 2015-10-05 13:11:26 -07:00
Gabor Krizsanits
7f437e03aa Bug 1190667 - WEAPI contextMenus. r=billm 2015-10-05 17:48:08 +02:00
Luca Greco
f406a65dad Bug 1204583 - Implement WebExtension runtime.connect for background and tab. r=billm,gabor 2015-09-26 09:22:00 +02:00
Kapeel Sable
d5d674fd3c Bug 1212171 - Change for referencing a different object Component.utils. instead of Cu. r=mak 2015-10-08 06:53:00 +02:00
Jan Keromnes
2d1bbf4f36 Bug 1196785 - Create an about:debugging page to list debuggable devtools targets. r=jryans 2015-10-02 08:10:00 +02:00
Chris Rafuse
dd84aa0985 Bug 1204345 - Last letter at bottom right can be cut off, r=dmose 2015-10-04 16:43:21 -07:00
Phil Ringnalda
bc88bb1f29 Merge f-t to m-c, a=merge 2015-10-03 15:50:22 -07:00