| 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 399 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 410 const blink::WebFindOptions& options) override; | 410 const blink::WebFindOptions& options) override; |
| 411 void StopFinding(StopFindAction action) override; | 411 void StopFinding(StopFindAction action) override; |
| 412 bool WasRecentlyAudible() override; | 412 bool WasRecentlyAudible() override; |
| 413 void GetManifest(const GetManifestCallback& callback) override; | 413 void GetManifest(const GetManifestCallback& callback) override; |
| 414 void ExitFullscreen(bool will_cause_resize) override; | 414 void ExitFullscreen(bool will_cause_resize) override; |
| 415 void ResumeLoadingCreatedWebContents() override; | 415 void ResumeLoadingCreatedWebContents() override; |
| 416 void ResumeMediaSession() override; | 416 void ResumeMediaSession() override; |
| 417 void SuspendMediaSession() override; | 417 void SuspendMediaSession() override; |
| 418 void StopMediaSession() override; | 418 void StopMediaSession() override; |
| 419 void OnPasswordInputShownOnHttp() override; | 419 void OnPasswordInputShownOnHttp() override; |
| 420 void OnAllPasswordInputsHiddenOnHttp() override; |
| 420 void OnCreditCardInputShownOnHttp() override; | 421 void OnCreditCardInputShownOnHttp() override; |
| 421 void SetIsOverlayContent(bool is_overlay_content) override; | 422 void SetIsOverlayContent(bool is_overlay_content) override; |
| 422 | 423 |
| 423 #if defined(OS_ANDROID) | 424 #if defined(OS_ANDROID) |
| 424 base::android::ScopedJavaLocalRef<jobject> GetJavaWebContents() override; | 425 base::android::ScopedJavaLocalRef<jobject> GetJavaWebContents() override; |
| 425 virtual WebContentsAndroid* GetWebContentsAndroid(); | 426 virtual WebContentsAndroid* GetWebContentsAndroid(); |
| 426 void ActivateNearestFindResult(float x, float y) override; | 427 void ActivateNearestFindResult(float x, float y) override; |
| 427 void RequestFindMatchRects(int current_version) override; | 428 void RequestFindMatchRects(int current_version) override; |
| 428 service_manager::InterfaceProvider* GetJavaInterfaces() override; | 429 service_manager::InterfaceProvider* GetJavaInterfaces() override; |
| 429 #elif defined(OS_MACOSX) | 430 #elif defined(OS_MACOSX) |
| (...skipping 1032 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1462 // Adds/removes a callback called on creation of each new WebContents. | 1463 // Adds/removes a callback called on creation of each new WebContents. |
| 1463 static void AddCreatedCallbackForTesting(const CreatedCallback& callback); | 1464 static void AddCreatedCallbackForTesting(const CreatedCallback& callback); |
| 1464 static void RemoveCreatedCallbackForTesting(const CreatedCallback& callback); | 1465 static void RemoveCreatedCallbackForTesting(const CreatedCallback& callback); |
| 1465 | 1466 |
| 1466 DISALLOW_COPY_AND_ASSIGN(FriendZone); | 1467 DISALLOW_COPY_AND_ASSIGN(FriendZone); |
| 1467 }; | 1468 }; |
| 1468 | 1469 |
| 1469 } // namespace content | 1470 } // namespace content |
| 1470 | 1471 |
| 1471 #endif // CONTENT_BROWSER_WEB_CONTENTS_WEB_CONTENTS_IMPL_H_ | 1472 #endif // CONTENT_BROWSER_WEB_CONTENTS_WEB_CONTENTS_IMPL_H_ |
| OLD | NEW |