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

Side by Side Diff: chrome/browser/ui/webui/bluetooth_internals/bluetooth_internals_ui.cc

Issue 2590793004: MD Downloads: gzip vulcanized resources via compress="gzip" (Closed)
Patch Set: . Created 4 years 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 unified diff | Download patch
OLDNEW
1 // Copyright 2016 The Chromium Authors. All rights reserved. 1 // Copyright 2016 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be 2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file. 3 // found in the LICENSE file.
4 4
5 #include "chrome/browser/ui/webui/bluetooth_internals/bluetooth_internals_ui.h" 5 #include "chrome/browser/ui/webui/bluetooth_internals/bluetooth_internals_ui.h"
6 6
7 #include "chrome/browser/profiles/profile.h" 7 #include "chrome/browser/profiles/profile.h"
8 #include "chrome/common/url_constants.h" 8 #include "chrome/common/url_constants.h"
9 #include "chrome/grit/browser_resources.h" 9 #include "chrome/grit/browser_resources.h"
10 #include "content/public/browser/web_ui_data_source.h" 10 #include "content/public/browser/web_ui_data_source.h"
(...skipping 24 matching lines...) Expand all
35 35
36 html_source->AddResourcePath( 36 html_source->AddResourcePath(
37 "device/bluetooth/public/interfaces/adapter.mojom", 37 "device/bluetooth/public/interfaces/adapter.mojom",
38 IDR_BLUETOOTH_ADAPTER_MOJO_JS); 38 IDR_BLUETOOTH_ADAPTER_MOJO_JS);
39 html_source->AddResourcePath( 39 html_source->AddResourcePath(
40 "device/bluetooth/public/interfaces/device.mojom", 40 "device/bluetooth/public/interfaces/device.mojom",
41 IDR_BLUETOOTH_DEVICE_MOJO_JS); 41 IDR_BLUETOOTH_DEVICE_MOJO_JS);
42 html_source->AddResourcePath("device/bluetooth/public/interfaces/uuid.mojom", 42 html_source->AddResourcePath("device/bluetooth/public/interfaces/uuid.mojom",
43 IDR_BLUETOOTH_UUID_MOJO_JS); 43 IDR_BLUETOOTH_UUID_MOJO_JS);
44 html_source->SetDefaultResource(IDR_BLUETOOTH_INTERNALS_HTML); 44 html_source->SetDefaultResource(IDR_BLUETOOTH_INTERNALS_HTML);
45 html_source->DisableI18nAndUseGzipForAllPaths(); 45 html_source->UseGzip(std::unordered_set<std::string>());
46 46
47 Profile* profile = Profile::FromWebUI(web_ui); 47 Profile* profile = Profile::FromWebUI(web_ui);
48 content::WebUIDataSource::Add(profile, html_source); 48 content::WebUIDataSource::Add(profile, html_source);
49 } 49 }
50 50
51 BluetoothInternalsUI::~BluetoothInternalsUI() {} 51 BluetoothInternalsUI::~BluetoothInternalsUI() {}
OLDNEW
« no previous file with comments | « chrome/browser/browser_resources.grd ('k') | chrome/browser/ui/webui/domain_reliability_internals_ui.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698