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

Side by Side Diff: content/public/browser/web_contents.cc

Issue 2639203003: Add certificate error handling to devtools. (Closed)
Patch Set: format Created 3 years, 11 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 (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
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(CertErrorHandler handler) {
41 return false;
42 }
43
40 } // namespace content 44 } // namespace content
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698