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 #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 310 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
321 void SetLastActiveTime(base::TimeTicks last_active_time) override; | 321 void SetLastActiveTime(base::TimeTicks last_active_time) override; |
322 base::TimeTicks GetLastHiddenTime() const override; | 322 base::TimeTicks GetLastHiddenTime() const override; |
323 void WasShown() override; | 323 void WasShown() override; |
324 void WasHidden() override; | 324 void WasHidden() override; |
325 bool NeedToFireBeforeUnload() override; | 325 bool NeedToFireBeforeUnload() override; |
326 void DispatchBeforeUnload() override; | 326 void DispatchBeforeUnload() override; |
327 void AttachToOuterWebContentsFrame( | 327 void AttachToOuterWebContentsFrame( |
328 WebContents* outer_web_contents, | 328 WebContents* outer_web_contents, |
329 RenderFrameHost* outer_contents_frame) override; | 329 RenderFrameHost* outer_contents_frame) override; |
330 void DidChangeVisibleSecurityState() override; | 330 void DidChangeVisibleSecurityState() override; |
| 331 bool NotifyCertificateError( |
| 332 base::Callback<void(content::CertificateRequestResultType)>) override; |
331 void Stop() override; | 333 void Stop() override; |
332 WebContents* Clone() override; | 334 WebContents* Clone() override; |
333 void ReloadFocusedFrame(bool bypass_cache) override; | 335 void ReloadFocusedFrame(bool bypass_cache) override; |
334 void Undo() override; | 336 void Undo() override; |
335 void Redo() override; | 337 void Redo() override; |
336 void Cut() override; | 338 void Cut() override; |
337 void Copy() override; | 339 void Copy() override; |
338 void CopyToFindPboard() override; | 340 void CopyToFindPboard() override; |
339 void Paste() override; | 341 void Paste() override; |
340 void PasteAndMatchStyle() override; | 342 void PasteAndMatchStyle() override; |
(...skipping 1175 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1516 // Adds/removes a callback called on creation of each new WebContents. | 1518 // Adds/removes a callback called on creation of each new WebContents. |
1517 static void AddCreatedCallbackForTesting(const CreatedCallback& callback); | 1519 static void AddCreatedCallbackForTesting(const CreatedCallback& callback); |
1518 static void RemoveCreatedCallbackForTesting(const CreatedCallback& callback); | 1520 static void RemoveCreatedCallbackForTesting(const CreatedCallback& callback); |
1519 | 1521 |
1520 DISALLOW_COPY_AND_ASSIGN(FriendZone); | 1522 DISALLOW_COPY_AND_ASSIGN(FriendZone); |
1521 }; | 1523 }; |
1522 | 1524 |
1523 } // namespace content | 1525 } // namespace content |
1524 | 1526 |
1525 #endif // CONTENT_BROWSER_WEB_CONTENTS_WEB_CONTENTS_IMPL_H_ | 1527 #endif // CONTENT_BROWSER_WEB_CONTENTS_WEB_CONTENTS_IMPL_H_ |
OLD | NEW |