| Index: chrome/browser/apps/drive/drive_service_bridge.cc
|
| diff --git a/chrome/browser/apps/drive/drive_service_bridge.cc b/chrome/browser/apps/drive/drive_service_bridge.cc
|
| index 1d8bf2680d9006e37e0b1a35d2f088314b70f4ff..648aa2933e38d794cad3eb85a9776fe7a44af710 100644
|
| --- a/chrome/browser/apps/drive/drive_service_bridge.cc
|
| +++ b/chrome/browser/apps/drive/drive_service_bridge.cc
|
| @@ -21,6 +21,7 @@
|
| #include "components/signin/core/browser/profile_oauth2_token_service.h"
|
| #include "components/signin/core/browser/signin_manager.h"
|
| #include "content/public/browser/browser_thread.h"
|
| +#include "net/traffic_annotation/network_traffic_annotation.h"
|
|
|
| namespace {
|
|
|
| @@ -81,12 +82,11 @@ void DriveServiceBridgeImpl::Initialize() {
|
| ProfileOAuth2TokenService* token_service =
|
| ProfileOAuth2TokenServiceFactory::GetForProfile(profile_);
|
| drive_service_.reset(new drive::DriveAPIService(
|
| - token_service,
|
| - profile_->GetRequestContext(),
|
| - drive_task_runner.get(),
|
| + token_service, profile_->GetRequestContext(), drive_task_runner.get(),
|
| GURL(google_apis::DriveApiUrlGenerator::kBaseUrlForProduction),
|
| GURL(google_apis::DriveApiUrlGenerator::kBaseThumbnailUrlForProduction),
|
| - std::string() /* custom_user_agent */));
|
| + std::string(), /* custom_user_agent */
|
| + NO_TRAFFIC_ANNOTATION_YET));
|
| SigninManagerBase* signin_manager =
|
| SigninManagerFactory::GetForProfile(profile_);
|
| drive_service_->Initialize(signin_manager->GetAuthenticatedAccountId());
|
|
|