| 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 <map> | 8 #include <map> |
| 9 #include <set> | 9 #include <set> |
| 10 #include <string> | 10 #include <string> |
| (...skipping 267 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 278 void WasShown() override; | 278 void WasShown() override; |
| 279 void WasHidden() override; | 279 void WasHidden() override; |
| 280 bool NeedToFireBeforeUnload() override; | 280 bool NeedToFireBeforeUnload() override; |
| 281 void DispatchBeforeUnload(bool for_cross_site_transition) override; | 281 void DispatchBeforeUnload(bool for_cross_site_transition) override; |
| 282 void Stop() override; | 282 void Stop() override; |
| 283 WebContents* Clone() override; | 283 WebContents* Clone() override; |
| 284 void ReloadFocusedFrame(bool ignore_cache) override; | 284 void ReloadFocusedFrame(bool ignore_cache) override; |
| 285 void Undo() override; | 285 void Undo() override; |
| 286 void Redo() override; | 286 void Redo() override; |
| 287 void Cut() override; | 287 void Cut() override; |
| 288 void Print() override; |
| 289 void SaveImage() override; |
| 288 void Copy() override; | 290 void Copy() override; |
| 289 void CopyToFindPboard() override; | 291 void CopyToFindPboard() override; |
| 290 void Paste() override; | 292 void Paste() override; |
| 291 void PasteAndMatchStyle() override; | 293 void PasteAndMatchStyle() override; |
| 292 void Delete() override; | 294 void Delete() override; |
| 293 void SelectAll() override; | 295 void SelectAll() override; |
| 294 void Unselect() override; | 296 void Unselect() override; |
| 295 void Replace(const base::string16& word) override; | 297 void Replace(const base::string16& word) override; |
| 296 void ReplaceMisspelling(const base::string16& word) override; | 298 void ReplaceMisspelling(const base::string16& word) override; |
| 297 void NotifyContextMenuClosed( | 299 void NotifyContextMenuClosed( |
| (...skipping 984 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1282 // Adds/removes a callback called on creation of each new WebContents. | 1284 // Adds/removes a callback called on creation of each new WebContents. |
| 1283 static void AddCreatedCallbackForTesting(const CreatedCallback& callback); | 1285 static void AddCreatedCallbackForTesting(const CreatedCallback& callback); |
| 1284 static void RemoveCreatedCallbackForTesting(const CreatedCallback& callback); | 1286 static void RemoveCreatedCallbackForTesting(const CreatedCallback& callback); |
| 1285 | 1287 |
| 1286 DISALLOW_COPY_AND_ASSIGN(FriendZone); | 1288 DISALLOW_COPY_AND_ASSIGN(FriendZone); |
| 1287 }; | 1289 }; |
| 1288 | 1290 |
| 1289 } // namespace content | 1291 } // namespace content |
| 1290 | 1292 |
| 1291 #endif // CONTENT_BROWSER_WEB_CONTENTS_WEB_CONTENTS_IMPL_H_ | 1293 #endif // CONTENT_BROWSER_WEB_CONTENTS_WEB_CONTENTS_IMPL_H_ |
| OLD | NEW |