Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(6748)

Unified Diff: chrome/browser/extensions/webstore_install_helper.cc

Issue 2682263002: Network traffic annotation added to chrome::BitmapFetcher. (Closed)
Patch Set: Extra file removed. Created 3 years, 10 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: chrome/browser/extensions/webstore_install_helper.cc
diff --git a/chrome/browser/extensions/webstore_install_helper.cc b/chrome/browser/extensions/webstore_install_helper.cc
index 691ec84901659706c6e3008c225f0e0a39aa91f8..f46d8afdcba2945cb4e90c2385b2ab755fba7568 100644
--- a/chrome/browser/extensions/webstore_install_helper.cc
+++ b/chrome/browser/extensions/webstore_install_helper.cc
@@ -10,6 +10,7 @@
#include "components/safe_json/safe_json_parser.h"
#include "content/public/browser/browser_thread.h"
#include "net/base/load_flags.h"
+#include "net/traffic_annotation/network_traffic_annotation.h"
#include "net/url_request/url_request.h"
using content::BrowserThread;
@@ -53,7 +54,28 @@ void WebstoreInstallHelper::Start() {
// No existing |icon_fetcher_| to avoid unbalanced AddRef().
CHECK(!icon_fetcher_.get());
AddRef(); // Balanced in OnFetchComplete().
- icon_fetcher_.reset(new chrome::BitmapFetcher(icon_url_, this));
+ net::NetworkTrafficAnnotationTag traffic_annotation =
+ net::DefineNetworkTrafficAnnotation("", R"(
+ semantics {
+ sender: ""
Devlin 2017/02/13 23:35:56 Webstore Install Helper
Ramin Halavati 2017/02/14 10:05:54 Done.
+ description: ""
Devlin 2017/02/13 23:35:56 Fetches the bitmap corresponding to an extension i
Ramin Halavati 2017/02/14 10:05:54 Done.
+ trigger: ""
Devlin 2017/02/13 23:35:56 This can happen in a few different circumstances:
Ramin Halavati 2017/02/14 10:05:54 Done.
+ data: ""
Devlin 2017/02/13 23:35:56 The url of the icon for the extension, which inclu
Ramin Halavati 2017/02/14 10:05:54 Done.
+ destination: WEBSITE/GOOGLE_OWNED_SERVICE/OTHER
Devlin 2017/02/13 23:35:56 Chrome Web Store == GOOGLE_OWNED_SERVICE.
Ramin Halavati 2017/02/14 10:05:54 Done.
+ }
+ policy {
+ cookies_allowed: false/true
Devlin 2017/02/13 23:35:56 Good question - how would we determine this?
Ramin Halavati 2017/02/14 10:05:54 In current case, it is specified in the icon_fetch
+ cookies_store_exceptions: ""
+ setting: ""
Devlin 2017/02/13 23:35:56 There's no direct Chrome setting to disable this,
Ramin Halavati 2017/02/14 10:05:54 Done.
+ policy {
+ [POLICY_NAME] {
+ policy_options {mode: MANDATORY/RECOMMENDED/UNSET}
Devlin 2017/02/13 23:35:57 I don't see policy_options in the traffic_annotati
Ramin Halavati 2017/02/14 10:05:54 The policy options are here: https://cs.chromium.o
Devlin 2017/02/15 00:36:08 But what are the policy options indicative of? Th
Ramin Halavati 2017/02/15 11:52:02 The questions is if any of the policy options will
+ value: ...
+ }
+ }
+ })");
+ icon_fetcher_.reset(
+ new chrome::BitmapFetcher(icon_url_, this, traffic_annotation));
icon_fetcher_->Init(
context_getter_, std::string(),
net::URLRequest::CLEAR_REFERRER_ON_TRANSITION_FROM_SECURE_TO_INSECURE,
« no previous file with comments | « chrome/browser/bitmap_fetcher/bitmap_fetcher_service_unittest.cc ('k') | chrome/browser/profiles/profile_avatar_downloader.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698