This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Traceback (most recent call last): | |
File "/usr/local/bin/b2gperf", line 9, in <module> | |
load_entry_point('b2gperf==0.8', 'console_scripts', 'b2gperf')() | |
File "/usr/local/Cellar/python/2.7.5/Frameworks/Python.framework/Versions/2.7/lib/python2.7/site-packages/b2gperf/b2gperf.py", line 607, in cli | |
marionette.start_session() | |
File "/usr/local/Cellar/python/2.7.5/Frameworks/Python.framework/Versions/2.7/lib/python2.7/site-packages/marionette/marionette.py", line 444, in start_session | |
self.session = self._send_message('newSession', 'value') | |
File "/usr/local/Cellar/python/2.7.5/Frameworks/Python.framework/Versions/2.7/lib/python2.7/site-packages/marionette/marionette.py", line 335, in _send_message | |
response = self.client.send(message) | |
File "/usr/local/Cellar/python/2.7.5/Frameworks/Python.framework/Versions/2.7/lib/python2.7/site-packages/marionette/client.py", line 85, in send |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?xml version="1.0" ?><manifest> | |
<remote fetch="https://git.mozilla.org/external/aosp" name="aosp"/> | |
<remote fetch="https://git.mozilla.org/b2g" name="b2gmozilla"/> | |
<remote fetch="https://git.mozilla.org/b2g" name="b2g"/> | |
<remote fetch="https://git.mozilla.org/b2g" name="mozilla"/> | |
<remote fetch="https://git.mozilla.org/external/caf" name="caf"/> | |
<remote fetch="https://git.mozilla.org/releases" name="mozillaorg"/> | |
<remote fetch="https://git.mozilla.org/external/apitrace" name="apitrace"/> | |
<default remote="caf" revision="ics_chocolate_rb4.2" sync-j="4"/> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
diff --git a/dom/activities/src/Activity.cpp b/dom/activities/src/Activity.cpp | |
--- a/dom/activities/src/Activity.cpp | |
+++ b/dom/activities/src/Activity.cpp | |
@@ -60,31 +60,74 @@ Activity::Initialize(nsISupports* aOwner | |
nsString message = | |
NS_LITERAL_STRING("Can start activity from non user input or chrome code"); | |
console->LogStringMessage(message.get()); | |
return NS_OK; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// system-message-handler | |
if (activity && disposition == 'inline') { | |
startInlineActivity(...); | |
return; | |
} | |
if (theTargetIsNotRunning) { | |
appendFrame(); | |
} else if (!doNotReload) { | |
doReplaceTheURLOfTheTargetFrame(); |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/* | |
* DO NOT EDIT. THIS FILE IS GENERATED FROM /home/alive/mc/dom/messages/interfaces/nsISystemMessagesInternal.idl | |
*/ | |
#ifndef __gen_nsISystemMessagesInternal_h__ | |
#define __gen_nsISystemMessagesInternal_h__ | |
#ifndef __gen_domstubs_h__ | |
#include "domstubs.h" |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/home/alive/mc/dom/bluetooth/BluetoothService.cpp: In member function 'virtual void mozilla::dom::bluetooth::BluetoothService::Notify(const mozilla::dom::bluetooth::BluetoothSignal&)': | |
/home/alive/mc/dom/bluetooth/BluetoothService.cpp:801: error: no matching function for call to 'nsISystemMessagesInternal::BroadcastMessage(nsString&, jsval)' | |
../../dist/include/nsISystemMessagesInternal.h:40: note: candidates are: virtual nsresult nsISystemMessagesInternal::BroadcastMessage(const nsAString_internal&, const JS::Value&, const JS::Value&) |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# HG changeset patch | |
# Parent 82fafd8ee40fac3255f81cf1ae2d5c72cf75deb7 | |
# User Alive Kuo <[email protected]> | |
diff --git a/b2g/chrome/content/shell.js b/b2g/chrome/content/shell.js | |
--- a/b2g/chrome/content/shell.js | |
+++ b/b2g/chrome/content/shell.js | |
@@ -564,17 +564,18 @@ | |
openAppForSystemMessage: function shell_openAppForSystemMessage(msg) { | |
let origin = Services.io.newURI(msg.manifest, null, null).prePath; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
'use strict'; | |
requireApp('system/js/sound_manager.js'); | |
var mocksFor_THIS_MODULE = ['']; | |
mocks_THIS_MODULE.forEach(function(mockName) { | |
if (! window[mockName]) { | |
window[mockName] = null; | |
} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Step to reproduce: | |
1. 使用訂票系統到選票數及座位頁面 | |
Expected: | |
1. 可正常按確定送出 | |
Actual: | |
1. 確定送出無用 | |
Root cause: |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
document.addEventListener('mozvisibilitychange', function onChange() { | |
if (document.mozHidden) { | |
console.log('[', document.URL ,'] HIDDEN====='); | |
} else { | |
console.log('[', document.URL ,'] SHOWN====='); | |
} | |
}); |