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

Side by Side Diff: chrome/browser/safe_browsing/download_feedback.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 2013 The Chromium Authors. All rights reserved. 1 // Copyright 2013 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/safe_browsing/download_feedback.h" 5 #include "chrome/browser/safe_browsing/download_feedback.h"
6 6
7 #include "base/bind.h" 7 #include "base/bind.h"
8 #include "base/files/file_util.h" 8 #include "base/files/file_util.h"
9 #include "base/macros.h" 9 #include "base/macros.h"
10 #include "base/memory/ptr_util.h" 10 #include "base/memory/ptr_util.h"
11 #include "base/metrics/histogram_macros.h" 11 #include "base/metrics/histogram_macros.h"
12 #include "base/task_runner.h" 12 #include "base/task_runner.h"
13 #include "chrome/common/safe_browsing/csd.pb.h" 13 #include "components/safe_browsing/csd.pb.h"
14 #include "content/public/browser/browser_thread.h" 14 #include "content/public/browser/browser_thread.h"
15 #include "net/base/net_errors.h" 15 #include "net/base/net_errors.h"
16 16
17 namespace safe_browsing { 17 namespace safe_browsing {
18 18
19 namespace { 19 namespace {
20 20
21 // This enum is used by histograms. Do not change the ordering or remove items. 21 // This enum is used by histograms. Do not change the ordering or remove items.
22 enum UploadResultType { 22 enum UploadResultType {
23 UPLOAD_SUCCESS, 23 UPLOAD_SUCCESS,
(...skipping 223 matching lines...) Expand 10 before | Expand all | Expand 10 after
247 new DownloadFeedbackImpl(request_context_getter, file_task_runner, 247 new DownloadFeedbackImpl(request_context_getter, file_task_runner,
248 file_path, ping_request, ping_response)); 248 file_path, ping_request, ping_response));
249 } 249 }
250 return DownloadFeedback::factory_->CreateDownloadFeedback( 250 return DownloadFeedback::factory_->CreateDownloadFeedback(
251 request_context_getter, file_task_runner, file_path, ping_request, 251 request_context_getter, file_task_runner, file_path, ping_request,
252 ping_response); 252 ping_response);
253 } 253 }
254 254
255 } // namespace safe_browsing 255 } // namespace safe_browsing
256 256
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698