| OLD | NEW |
| 1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2012 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 "content/public/browser/web_contents.h" | 5 #include "content/public/browser/web_contents.h" |
| 6 | 6 |
| 7 #include <utility> | 7 #include <utility> |
| 8 | 8 |
| 9 #include "content/public/common/child_process_host.h" | 9 #include "content/public/common/child_process_host.h" |
| 10 #include "ipc/ipc_message.h" | 10 #include "ipc/ipc_message.h" |
| (...skipping 19 matching lines...) Expand all Loading... |
| 30 context(nullptr), | 30 context(nullptr), |
| 31 renderer_initiated_creation(false), | 31 renderer_initiated_creation(false), |
| 32 initialize_renderer(false) { | 32 initialize_renderer(false) { |
| 33 } | 33 } |
| 34 | 34 |
| 35 WebContents::CreateParams::CreateParams(const CreateParams& other) = default; | 35 WebContents::CreateParams::CreateParams(const CreateParams& other) = default; |
| 36 | 36 |
| 37 WebContents::CreateParams::~CreateParams() { | 37 WebContents::CreateParams::~CreateParams() { |
| 38 } | 38 } |
| 39 | 39 |
| 40 bool WebContents::NotifyCertificateError(CertErrorCallback handler) { |
| 41 return false; |
| 42 } |
| 43 |
| 40 } // namespace content | 44 } // namespace content |
| OLD | NEW |