| 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 278 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 289 void SetLastActiveTime(base::TimeTicks last_active_time) override; | 289 void SetLastActiveTime(base::TimeTicks last_active_time) override; |
| 290 void WasShown() override; | 290 void WasShown() override; |
| 291 void WasHidden() override; | 291 void WasHidden() override; |
| 292 bool NeedToFireBeforeUnload() override; | 292 bool NeedToFireBeforeUnload() override; |
| 293 void DispatchBeforeUnload(bool for_cross_site_transition) override; | 293 void DispatchBeforeUnload(bool for_cross_site_transition) override; |
| 294 void AttachToOuterWebContentsFrame( | 294 void AttachToOuterWebContentsFrame( |
| 295 WebContents* outer_web_contents, | 295 WebContents* outer_web_contents, |
| 296 RenderFrameHost* outer_contents_frame) override; | 296 RenderFrameHost* outer_contents_frame) override; |
| 297 void Stop() override; | 297 void Stop() override; |
| 298 WebContents* Clone() override; | 298 WebContents* Clone() override; |
| 299 void ReloadFocusedFrame(bool ignore_cache) override; | 299 void ReloadFocusedFrame(bool bypass_cache) override; |
| 300 void Undo() override; | 300 void Undo() override; |
| 301 void Redo() override; | 301 void Redo() override; |
| 302 void Cut() override; | 302 void Cut() override; |
| 303 void Copy() override; | 303 void Copy() override; |
| 304 void CopyToFindPboard() override; | 304 void CopyToFindPboard() override; |
| 305 void Paste() override; | 305 void Paste() override; |
| 306 void PasteAndMatchStyle() override; | 306 void PasteAndMatchStyle() override; |
| 307 void Delete() override; | 307 void Delete() override; |
| 308 void SelectAll() override; | 308 void SelectAll() override; |
| 309 void Unselect() override; | 309 void Unselect() override; |
| (...skipping 1033 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1343 // Adds/removes a callback called on creation of each new WebContents. | 1343 // Adds/removes a callback called on creation of each new WebContents. |
| 1344 static void AddCreatedCallbackForTesting(const CreatedCallback& callback); | 1344 static void AddCreatedCallbackForTesting(const CreatedCallback& callback); |
| 1345 static void RemoveCreatedCallbackForTesting(const CreatedCallback& callback); | 1345 static void RemoveCreatedCallbackForTesting(const CreatedCallback& callback); |
| 1346 | 1346 |
| 1347 DISALLOW_COPY_AND_ASSIGN(FriendZone); | 1347 DISALLOW_COPY_AND_ASSIGN(FriendZone); |
| 1348 }; | 1348 }; |
| 1349 | 1349 |
| 1350 } // namespace content | 1350 } // namespace content |
| 1351 | 1351 |
| 1352 #endif // CONTENT_BROWSER_WEB_CONTENTS_WEB_CONTENTS_IMPL_H_ | 1352 #endif // CONTENT_BROWSER_WEB_CONTENTS_WEB_CONTENTS_IMPL_H_ |
| OLD | NEW |