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

Side by Side Diff: chrome/browser/chromeos/attestation/platform_verification_flow.cc

Issue 2771233002: Remove the wrapper functions content::RecordAction et al (Closed)
Patch Set: Rebased 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/chromeos/attestation/platform_verification_flow.h" 5 #include "chrome/browser/chromeos/attestation/platform_verification_flow.h"
6 6
7 #include <utility> 7 #include <utility>
8 8
9 #include "base/command_line.h" 9 #include "base/command_line.h"
10 #include "base/logging.h" 10 #include "base/logging.h"
(...skipping 16 matching lines...) Expand all
27 #include "chromeos/dbus/cryptohome_client.h" 27 #include "chromeos/dbus/cryptohome_client.h"
28 #include "chromeos/dbus/dbus_thread_manager.h" 28 #include "chromeos/dbus/dbus_thread_manager.h"
29 #include "components/content_settings/core/browser/host_content_settings_map.h" 29 #include "components/content_settings/core/browser/host_content_settings_map.h"
30 #include "components/content_settings/core/common/content_settings_pattern.h" 30 #include "components/content_settings/core/common/content_settings_pattern.h"
31 #include "components/content_settings/core/common/content_settings_types.h" 31 #include "components/content_settings/core/common/content_settings_types.h"
32 #include "components/user_manager/user.h" 32 #include "components/user_manager/user.h"
33 #include "content/public/browser/browser_context.h" 33 #include "content/public/browser/browser_context.h"
34 #include "content/public/browser/browser_thread.h" 34 #include "content/public/browser/browser_thread.h"
35 #include "content/public/browser/render_process_host.h" 35 #include "content/public/browser/render_process_host.h"
36 #include "content/public/browser/render_view_host.h" 36 #include "content/public/browser/render_view_host.h"
37 #include "content/public/browser/user_metrics.h"
38 #include "content/public/browser/web_contents.h" 37 #include "content/public/browser/web_contents.h"
39 #include "content/public/common/url_constants.h" 38 #include "content/public/common/url_constants.h"
40 #include "net/cert/pem_tokenizer.h" 39 #include "net/cert/pem_tokenizer.h"
41 #include "net/cert/x509_certificate.h" 40 #include "net/cert/x509_certificate.h"
42 #include "third_party/WebKit/public/platform/modules/permissions/permission_stat us.mojom.h" 41 #include "third_party/WebKit/public/platform/modules/permissions/permission_stat us.mojom.h"
43 42
44 namespace { 43 namespace {
45 44
46 using chromeos::attestation::PlatformVerificationFlow; 45 using chromeos::attestation::PlatformVerificationFlow;
47 46
(...skipping 382 matching lines...) Expand 10 before | Expand all | Expand 10 after
430 if (!operation_success) { 429 if (!operation_success) {
431 LOG(WARNING) << "PlatformVerificationFlow: Failed to renew platform " 430 LOG(WARNING) << "PlatformVerificationFlow: Failed to renew platform "
432 "certificate."; 431 "certificate.";
433 return; 432 return;
434 } 433 }
435 VLOG(1) << "Certificate successfully renewed."; 434 VLOG(1) << "Certificate successfully renewed.";
436 } 435 }
437 436
438 } // namespace attestation 437 } // namespace attestation
439 } // namespace chromeos 438 } // namespace chromeos
OLDNEW
« no previous file with comments | « chrome/browser/browsing_data/chrome_browsing_data_remover_delegate.cc ('k') | chrome/browser/chromeos/external_metrics.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698