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

Unified Diff: content/browser/accessibility/accessibility_ui.cc

Issue 2867693004: Snapshot of all changes to get jumbo in blink and content.
Patch Set: Exclude certain files from jumbo because of a Windows problem Created 3 years, 3 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
« no previous file with comments | « content/browser/BUILD.gn ('k') | content/browser/appcache/appcache_storage_impl.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: content/browser/accessibility/accessibility_ui.cc
diff --git a/content/browser/accessibility/accessibility_ui.cc b/content/browser/accessibility/accessibility_ui.cc
index 79d5cd8c8d8a7e8c832f206f9d14fc77721052e4..a645ebb6c117cc50a9b6e9c555af163fa409f669 100644
--- a/content/browser/accessibility/accessibility_ui.cc
+++ b/content/browser/accessibility/accessibility_ui.cc
@@ -37,7 +37,7 @@
#include "content/public/common/url_constants.h"
#include "net/base/escape.h"
-static const char kDataFile[] = "targets-data.json";
+static const char kTargetsDataFile[] = "targets-data.json";
static const char kProcessIdField[] = "processId";
static const char kRouteIdField[] = "routeId";
@@ -118,7 +118,7 @@ std::unique_ptr<base::DictionaryValue> BuildTargetDescriptor(
bool HandleRequestCallback(BrowserContext* current_context,
const std::string& path,
const WebUIDataSource::GotDataCallback& callback) {
- if (path != kDataFile)
+ if (path != kTargetsDataFile)
return false;
std::unique_ptr<base::ListValue> rvh_list(new base::ListValue());
@@ -205,7 +205,7 @@ AccessibilityUI::AccessibilityUI(WebUI* web_ui) : WebUIController(web_ui) {
web_ui->GetWebContents()->GetBrowserContext()));
std::unordered_set<std::string> exclude_from_gzip;
- exclude_from_gzip.insert(kDataFile);
+ exclude_from_gzip.insert(kTargetsDataFile);
html_source->UseGzip(exclude_from_gzip);
BrowserContext* browser_context =
« no previous file with comments | « content/browser/BUILD.gn ('k') | content/browser/appcache/appcache_storage_impl.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698