| Chunk |
|---|
| Conflicting content |
|---|
public void onAudioModeIsVoipChanged(Connection c, boolean isVoip) {}
public void onStatusHintsChanged(Connection c, StatusHints statusHints) {}
public void onStartActivityFromInCall(Connection c, PendingIntent intent) {}
<<<<<<< HEAD
public void onConferenceableConnectionsChanged(
Connection c, List |
| Solution content |
|---|
public void onAudioModeIsVoipChanged(Connection c, boolean isVoip) {}
public void onStatusHintsChanged(Connection c, StatusHints statusHints) {}
public void onStartActivityFromInCall(Connection c, PendingIntent intent) {}
public void onConferenceableConnectionsChanged(
Connection c, List |
| File |
|---|
| Connection.java |
| Developer's decision |
|---|
| Version 1 |
| Kind of conflict |
|---|
| Method declaration |
| Chunk |
|---|
| Conflicting content |
|---|
for (Listener l : mListeners) {
l.onStatusHintsChanged(this, statusHints);
}
<<<<<<< HEAD
}
/**
* Sets the connections with which this connection can be conferenced.
*
* @param conferenceableConnections The set of connections this connection can conference with.
*/
public final void setConferenceableConnections(List |
| Solution content |
|---|
for (Listener l : mListeners) {
l.onStatusHintsChanged(this, statusHints);
}
}
/**
* Sets the connections with which this connection can be conferenced.
*
* @param conferenceableConnections The set of connections this connection can conference with.
*/
public final void setConferenceableConnections(List |
| File |
|---|
| Connection.java |
| Developer's decision |
|---|
| Version 1 |
| Kind of conflict |
|---|
| Comment |
| For statement |
| Method invocation |
| Method signature |
| Chunk |
|---|
| Conflicting content |
|---|
public void onDisconnect() {}
/**
<<<<<<< HEAD
* Notifies this Connection of a request to separate from its parent conference.
=======
* Notifies this Connection of a request to disconnect.
>>>>>>> dc568d27056c8b0f6abea393fa756aeac77de456
*/
public void onSeparate() {}
|
| Solution content |
|---|
public void onDisconnect() {}
/**
* Notifies this Connection of a request to separate from its parent conference.
*/
public void onSeparate() {}
|
| File |
|---|
| Connection.java |
| Developer's decision |
|---|
| Version 1 |
| Kind of conflict |
|---|
| Comment |
| Chunk |
|---|
| Conflicting content |
|---|
<<<<<<< HEAD
*/
public void onPhoneAccountClicked() {}
/**
* Merge this connection and the specified connection into a conference call. Once the
* connections are merged, the calls should be added to the an existing or new
* {@code Conference} instance. For new {@code Conference} instances, use
* {@code ConnectionService#addConference}.
*
* @param otherConnection The connection with which this connection should be conferenced.
*/
public void onConferenceWith(Connection otherConnection) {}
=======
>>>>>>> dc568d27056c8b0f6abea393fa756aeac77de456
private void addChild(Connection connection) {
Log.d(this, "adding child %s", connection);
mChildConnections.add(connection); |
| Solution content |
|---|
*/
public void onPhoneAccountClicked() {}
/**
* Merge this connection and the specified connection into a conference call. Once the
* connections are merged, the calls should be added to the an existing or new
* {@code Conference} instance. For new {@code Conference} instances, use
* {@code ConnectionService#addConference}.
*
* @param otherConnection The connection with which this connection should be conferenced.
*/
public void onConferenceWith(Connection otherConnection) {}
private void addChild(Connection connection) {
Log.d(this, "adding child %s", connection);
mChildConnections.add(connection); |
| File |
|---|
| Connection.java |
| Developer's decision |
|---|
| Version 1 |
| Kind of conflict |
|---|
| Comment |
| Method declaration |