| Index: chrome/browser/android/compositor/scene_layer/contextual_search_scene_layer.cc | 
| diff --git a/chrome/browser/android/compositor/scene_layer/contextual_search_scene_layer.cc b/chrome/browser/android/compositor/scene_layer/contextual_search_scene_layer.cc | 
| index 1f9269ce333ccbce7cd500ac36f63887b6bf49d5..05bc04ce06f094eec9ad1a71a1ecbbf782a3d560 100644 | 
| --- a/chrome/browser/android/compositor/scene_layer/contextual_search_scene_layer.cc | 
| +++ b/chrome/browser/android/compositor/scene_layer/contextual_search_scene_layer.cc | 
| @@ -16,6 +16,7 @@ | 
| #include "content/public/browser/web_contents.h" | 
| #include "jni/ContextualSearchSceneLayer_jni.h" | 
| #include "net/base/load_flags.h" | 
| +#include "net/traffic_annotation/network_traffic_annotation.h" | 
| #include "net/url_request/url_request_context_getter.h" | 
| #include "ui/android/resources/resource_manager_impl.h" | 
| #include "ui/android/view_android.h" | 
| @@ -232,7 +233,8 @@ void ContextualSearchSceneLayer::FetchThumbnail(jobject j_profile) { | 
|  | 
| GURL gurl(thumbnail_url_); | 
| Profile* profile = ProfileAndroid::FromProfileAndroid(j_profile); | 
| -  fetcher_ = base::MakeUnique<chrome::BitmapFetcher>(gurl, this); | 
| +  fetcher_ = base::MakeUnique<chrome::BitmapFetcher>(gurl, this, | 
| +                                                     NO_TRAFFIC_ANNOTATION_YET); | 
| fetcher_->Init( | 
| profile->GetRequestContext(), | 
| std::string(), | 
|  |