New ProjectAccessScreen to edit access controls

Change-Id: Ica21a1b3bb8b3b1f3e2e4f4964f25f9c8a1741be
Signed-off-by: Shawn O. Pearce <sop@google.com>
This commit is contained in:
Shawn O. Pearce
2011-01-13 16:54:19 -08:00
parent 4b5191e689
commit 08ad16693e
48 changed files with 2851 additions and 43 deletions

View File

@@ -14,7 +14,6 @@
package com.google.gerrit.common.data;
import com.google.gerrit.reviewdb.AccountGroupName;
import com.google.gerrit.reviewdb.Project;
import com.google.gwt.user.client.rpc.AsyncCallback;
import com.google.gwtjsonrpc.client.RemoteJsonService;
@@ -32,5 +31,5 @@ public interface SuggestService extends RemoteJsonService {
AsyncCallback<List<AccountInfo>> callback);
void suggestAccountGroup(String query, int limit,
AsyncCallback<List<AccountGroupName>> callback);
AsyncCallback<List<GroupReference>> callback);
}