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

Side by Side Diff: components/dom_distiller/content/browser/distillable_page_utils.cc

Issue 2712513004: Use a qualified path for grit-generated headers in components/ (Closed)
Patch Set: more checkdeps 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 unified diff | Download patch
OLDNEW
1 // Copyright 2015 The Chromium Authors. All rights reserved. 1 // Copyright 2015 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 "components/dom_distiller/content/browser/distillable_page_utils.h" 5 #include "components/dom_distiller/content/browser/distillable_page_utils.h"
6 6
7 #include "base/bind.h" 7 #include "base/bind.h"
8 #include "base/location.h" 8 #include "base/location.h"
9 #include "base/single_thread_task_runner.h" 9 #include "base/single_thread_task_runner.h"
10 #include "base/strings/utf_string_conversions.h" 10 #include "base/strings/utf_string_conversions.h"
11 #include "base/threading/thread_task_runner_handle.h" 11 #include "base/threading/thread_task_runner_handle.h"
12 #include "base/values.h" 12 #include "base/values.h"
13 #include "components/dom_distiller/content/browser/distillability_driver.h" 13 #include "components/dom_distiller/content/browser/distillability_driver.h"
14 #include "components/dom_distiller/content/browser/distiller_javascript_utils.h" 14 #include "components/dom_distiller/content/browser/distiller_javascript_utils.h"
15 #include "components/dom_distiller/core/distillable_page_detector.h" 15 #include "components/dom_distiller/core/distillable_page_detector.h"
16 #include "components/dom_distiller/core/experiments.h" 16 #include "components/dom_distiller/core/experiments.h"
17 #include "components/dom_distiller/core/page_features.h" 17 #include "components/dom_distiller/core/page_features.h"
18 #include "components/grit/components_resources.h"
18 #include "content/public/browser/render_frame_host.h" 19 #include "content/public/browser/render_frame_host.h"
19 #include "grit/components_resources.h"
20 #include "ui/base/resource/resource_bundle.h" 20 #include "ui/base/resource/resource_bundle.h"
21 21
22 namespace dom_distiller { 22 namespace dom_distiller {
23 namespace { 23 namespace {
24 void OnOGArticleJsResult(base::Callback<void(bool)> callback, 24 void OnOGArticleJsResult(base::Callback<void(bool)> callback,
25 const base::Value* result) { 25 const base::Value* result) {
26 bool success = false; 26 bool success = false;
27 if (result) { 27 if (result) {
28 result->GetAsBoolean(&success); 28 result->GetAsBoolean(&success);
29 } 29 }
(...skipping 74 matching lines...) Expand 10 before | Expand all | Expand 10 after
104 CHECK(web_contents); 104 CHECK(web_contents);
105 DistillabilityDriver::CreateForWebContents(web_contents); 105 DistillabilityDriver::CreateForWebContents(web_contents);
106 106
107 DistillabilityDriver *driver = 107 DistillabilityDriver *driver =
108 DistillabilityDriver::FromWebContents(web_contents); 108 DistillabilityDriver::FromWebContents(web_contents);
109 CHECK(driver); 109 CHECK(driver);
110 driver->SetDelegate(delegate); 110 driver->SetDelegate(delegate);
111 } 111 }
112 112
113 } // namespace dom_distiller 113 } // namespace dom_distiller
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698