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

Side by Side Diff: chrome/common/safe_browsing/binary_feature_extractor_win_unittest.cc

Issue 2733343002: Move chrome/common/safe_browsing/csd.proto to components/safe_browsing (Closed)
Patch Set: rebase again Created 3 years, 9 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 2014 The Chromium Authors. All rights reserved. 1 // Copyright 2014 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/common/safe_browsing/binary_feature_extractor.h" 5 #include "chrome/common/safe_browsing/binary_feature_extractor.h"
6 6
7 #include <string> 7 #include <string>
8 #include <vector> 8 #include <vector>
9 9
10 #include "base/base_paths.h" 10 #include "base/base_paths.h"
11 #include "base/files/file_path.h" 11 #include "base/files/file_path.h"
12 #include "base/memory/ref_counted.h" 12 #include "base/memory/ref_counted.h"
13 #include "base/path_service.h" 13 #include "base/path_service.h"
14 #include "chrome/common/chrome_paths.h" 14 #include "chrome/common/chrome_paths.h"
15 #include "chrome/common/safe_browsing/csd.pb.h" 15 #include "components/safe_browsing/csd.pb.h"
16 #include "net/cert/x509_cert_types.h" 16 #include "net/cert/x509_cert_types.h"
17 #include "net/cert/x509_certificate.h" 17 #include "net/cert/x509_certificate.h"
18 #include "testing/gtest/include/gtest/gtest.h" 18 #include "testing/gtest/include/gtest/gtest.h"
19 19
20 namespace safe_browsing { 20 namespace safe_browsing {
21 21
22 class BinaryFeatureExtractorWinTest : public testing::Test { 22 class BinaryFeatureExtractorWinTest : public testing::Test {
23 protected: 23 protected:
24 void SetUp() override { 24 void SetUp() override {
25 base::FilePath source_path; 25 base::FilePath source_path;
(...skipping 173 matching lines...) Expand 10 before | Expand all | Expand 10 after
199 ClientDownloadRequest_ImageHeaders image_headers; 199 ClientDownloadRequest_ImageHeaders image_headers;
200 google::protobuf::RepeatedPtrField<std::string> signed_data; 200 google::protobuf::RepeatedPtrField<std::string> signed_data;
201 ASSERT_TRUE(binary_feature_extractor_->ExtractImageFeatures( 201 ASSERT_TRUE(binary_feature_extractor_->ExtractImageFeatures(
202 testdata_path_.AppendASCII("disable_outdated_build_detector.exe"), 202 testdata_path_.AppendASCII("disable_outdated_build_detector.exe"),
203 BinaryFeatureExtractor::kDefaultOptions, &image_headers, &signed_data)); 203 BinaryFeatureExtractor::kDefaultOptions, &image_headers, &signed_data));
204 ASSERT_EQ(1, signed_data.size()); 204 ASSERT_EQ(1, signed_data.size());
205 ASSERT_LT(0U, signed_data.Get(0).size()); 205 ASSERT_LT(0U, signed_data.Get(0).size());
206 } 206 }
207 207
208 } // namespace safe_browsing 208 } // namespace safe_browsing
OLDNEW
« no previous file with comments | « chrome/common/safe_browsing/binary_feature_extractor_win.cc ('k') | chrome/common/safe_browsing/csd.proto » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698