Chromium Code Reviews| Index: remoting/client/jni/token_fetcher.cc |
| diff --git a/remoting/client/jni/token_fetcher.cc b/remoting/client/jni/token_fetcher.cc |
| new file mode 100644 |
| index 0000000000000000000000000000000000000000..51f7cfa0ac1b14d8c7a8eb98a94d733279b6c145 |
| --- /dev/null |
| +++ b/remoting/client/jni/token_fetcher.cc |
| @@ -0,0 +1,18 @@ |
| +// Copyright 2013 The Chromium Authors. All rights reserved. |
| +// Use of this source code is governed by a BSD-style license that can be |
| +// found in the LICENSE file. |
| + |
| +#include "remoting/client/jni/token_fetcher.h" |
| + |
| +namespace remoting { |
| + |
| +TokenFetcher::TokenFetcher() {} |
| + |
| +void TokenFetcher::FetchThirdPartyToken( |
| + const GURL& token_url, |
| + const std::string& scope, |
| + const TokenFetchedCallback& token_fetched_callback) { |
| + LOG(INFO) << "TokenFetcher::FetchThirdPartyToken(...)"; |
|
Wez
2013/07/09 17:34:47
NOTIMPLEMENTED()
|
| +} |
| + |
| +} // namespace remoting |