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 451 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
462 void DidCancelLoading() override; | 462 void DidCancelLoading() override; |
463 void DocumentAvailableInMainFrame(RenderViewHost* render_view_host) override; | 463 void DocumentAvailableInMainFrame(RenderViewHost* render_view_host) override; |
464 void RouteCloseEvent(RenderViewHost* rvh) override; | 464 void RouteCloseEvent(RenderViewHost* rvh) override; |
465 bool AddMessageToConsole(int32 level, | 465 bool AddMessageToConsole(int32 level, |
466 const base::string16& message, | 466 const base::string16& message, |
467 int32 line_no, | 467 int32 line_no, |
468 const base::string16& source_id) override; | 468 const base::string16& source_id) override; |
469 RendererPreferences GetRendererPrefs( | 469 RendererPreferences GetRendererPrefs( |
470 BrowserContext* browser_context) const override; | 470 BrowserContext* browser_context) const override; |
471 void OnUserGesture() override; | 471 void OnUserGesture() override; |
| 472 void OnUserInput(const blink::WebInputEvent::Type type) override; |
472 void OnIgnoredUIEvent() override; | 473 void OnIgnoredUIEvent() override; |
473 void RendererUnresponsive(RenderViewHost* render_view_host) override; | 474 void RendererUnresponsive(RenderViewHost* render_view_host) override; |
474 void RendererResponsive(RenderViewHost* render_view_host) override; | 475 void RendererResponsive(RenderViewHost* render_view_host) override; |
475 void LoadStateChanged(const GURL& url, | 476 void LoadStateChanged(const GURL& url, |
476 const net::LoadStateWithParam& load_state, | 477 const net::LoadStateWithParam& load_state, |
477 uint64 upload_position, | 478 uint64 upload_position, |
478 uint64 upload_size) override; | 479 uint64 upload_size) override; |
479 void Activate() override; | 480 void Activate() override; |
480 void Deactivate() override; | 481 void Deactivate() override; |
481 void LostCapture() override; | 482 void LostCapture() override; |
(...skipping 846 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1328 // Adds/removes a callback called on creation of each new WebContents. | 1329 // Adds/removes a callback called on creation of each new WebContents. |
1329 static void AddCreatedCallbackForTesting(const CreatedCallback& callback); | 1330 static void AddCreatedCallbackForTesting(const CreatedCallback& callback); |
1330 static void RemoveCreatedCallbackForTesting(const CreatedCallback& callback); | 1331 static void RemoveCreatedCallbackForTesting(const CreatedCallback& callback); |
1331 | 1332 |
1332 DISALLOW_COPY_AND_ASSIGN(FriendZone); | 1333 DISALLOW_COPY_AND_ASSIGN(FriendZone); |
1333 }; | 1334 }; |
1334 | 1335 |
1335 } // namespace content | 1336 } // namespace content |
1336 | 1337 |
1337 #endif // CONTENT_BROWSER_WEB_CONTENTS_WEB_CONTENTS_IMPL_H_ | 1338 #endif // CONTENT_BROWSER_WEB_CONTENTS_WEB_CONTENTS_IMPL_H_ |
OLD | NEW |