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

Side by Side Diff: content/browser/web_contents/web_contents_impl.h

Issue 2639203003: Add certificate error handling to devtools. (Closed)
Patch Set: Add certificate error command tests Created 3 years, 10 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 #ifndef CONTENT_BROWSER_WEB_CONTENTS_WEB_CONTENTS_IMPL_H_ 5 #ifndef CONTENT_BROWSER_WEB_CONTENTS_WEB_CONTENTS_IMPL_H_
6 #define CONTENT_BROWSER_WEB_CONTENTS_WEB_CONTENTS_IMPL_H_ 6 #define CONTENT_BROWSER_WEB_CONTENTS_WEB_CONTENTS_IMPL_H_
7 7
8 #include <stdint.h> 8 #include <stdint.h>
9 9
10 #include <functional> 10 #include <functional>
(...skipping 311 matching lines...) Expand 10 before | Expand all | Expand 10 after
322 void SetLastActiveTime(base::TimeTicks last_active_time) override; 322 void SetLastActiveTime(base::TimeTicks last_active_time) override;
323 base::TimeTicks GetLastHiddenTime() const override; 323 base::TimeTicks GetLastHiddenTime() const override;
324 void WasShown() override; 324 void WasShown() override;
325 void WasHidden() override; 325 void WasHidden() override;
326 bool NeedToFireBeforeUnload() override; 326 bool NeedToFireBeforeUnload() override;
327 void DispatchBeforeUnload() override; 327 void DispatchBeforeUnload() override;
328 void AttachToOuterWebContentsFrame( 328 void AttachToOuterWebContentsFrame(
329 WebContents* outer_web_contents, 329 WebContents* outer_web_contents,
330 RenderFrameHost* outer_contents_frame) override; 330 RenderFrameHost* outer_contents_frame) override;
331 void DidChangeVisibleSecurityState() override; 331 void DidChangeVisibleSecurityState() override;
332 bool NotifyCertificateError(
333 base::Callback<void(content::CertificateRequestResultType)>) override;
332 void Stop() override; 334 void Stop() override;
333 WebContents* Clone() override; 335 WebContents* Clone() override;
334 void ReloadFocusedFrame(bool bypass_cache) override; 336 void ReloadFocusedFrame(bool bypass_cache) override;
335 void Undo() override; 337 void Undo() override;
336 void Redo() override; 338 void Redo() override;
337 void Cut() override; 339 void Cut() override;
338 void Copy() override; 340 void Copy() override;
339 void CopyToFindPboard() override; 341 void CopyToFindPboard() override;
340 void Paste() override; 342 void Paste() override;
341 void PasteAndMatchStyle() override; 343 void PasteAndMatchStyle() override;
(...skipping 1173 matching lines...) Expand 10 before | Expand all | Expand 10 after
1515 // Adds/removes a callback called on creation of each new WebContents. 1517 // Adds/removes a callback called on creation of each new WebContents.
1516 static void AddCreatedCallbackForTesting(const CreatedCallback& callback); 1518 static void AddCreatedCallbackForTesting(const CreatedCallback& callback);
1517 static void RemoveCreatedCallbackForTesting(const CreatedCallback& callback); 1519 static void RemoveCreatedCallbackForTesting(const CreatedCallback& callback);
1518 1520
1519 DISALLOW_COPY_AND_ASSIGN(FriendZone); 1521 DISALLOW_COPY_AND_ASSIGN(FriendZone);
1520 }; 1522 };
1521 1523
1522 } // namespace content 1524 } // namespace content
1523 1525
1524 #endif // CONTENT_BROWSER_WEB_CONTENTS_WEB_CONTENTS_IMPL_H_ 1526 #endif // CONTENT_BROWSER_WEB_CONTENTS_WEB_CONTENTS_IMPL_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698