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

Side by Side Diff: components/dom_distiller/core/page_features.cc

Issue 1544433002: Replace RE2 import with a dependency (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Re-Added LICENSE and OWNERS file Created 5 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
« no previous file with comments | « components/autofill/core/browser/form_structure.cc ('k') | components/drive/drive_api_util.cc » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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/core/page_features.h" 5 #include "components/dom_distiller/core/page_features.h"
6 6
7 #include <string> 7 #include <string>
8 8
9 #include "base/json/json_reader.h" 9 #include "base/json/json_reader.h"
10 #include "third_party/re2/re2/re2.h" 10 #include "third_party/re2/src/re2/re2.h"
11 #include "url/gurl.h" 11 #include "url/gurl.h"
12 12
13 namespace dom_distiller { 13 namespace dom_distiller {
14 /* This code needs to derive features in the same way and order in which they 14 /* This code needs to derive features in the same way and order in which they
15 * are derived when training the model. Parts of that code are reproduced in the 15 * are derived when training the model. Parts of that code are reproduced in the
16 * comments below. 16 * comments below.
17 */ 17 */
18 18
19 namespace { 19 namespace {
20 20
(...skipping 213 matching lines...) Expand 10 before | Expand all | Expand 10 after
234 features.push_back(mozScore); 234 features.push_back(mozScore);
235 // 'mozScoreAllSqrt' 235 // 'mozScoreAllSqrt'
236 features.push_back(mozScoreAllSqrt); 236 features.push_back(mozScoreAllSqrt);
237 // 'mozScoreAllLinear' 237 // 'mozScoreAllLinear'
238 features.push_back(mozScoreAllLinear); 238 features.push_back(mozScoreAllLinear);
239 239
240 return features; 240 return features;
241 } 241 }
242 242
243 } // namespace dom_distiller 243 } // namespace dom_distiller
OLDNEW
« no previous file with comments | « components/autofill/core/browser/form_structure.cc ('k') | components/drive/drive_api_util.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698