| 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 CHROME_BROWSER_ANDROID_CHROME_WEB_CONTENTS_DELEGATE_ANDROID_H_ | 5 #ifndef CHROME_BROWSER_ANDROID_CHROME_WEB_CONTENTS_DELEGATE_ANDROID_H_ |
| 6 #define CHROME_BROWSER_ANDROID_CHROME_WEB_CONTENTS_DELEGATE_ANDROID_H_ | 6 #define CHROME_BROWSER_ANDROID_CHROME_WEB_CONTENTS_DELEGATE_ANDROID_H_ |
| 7 | 7 |
| 8 #include <jni.h> | 8 #include <jni.h> |
| 9 | 9 |
| 10 #include "base/file_path.h" | 10 #include "base/files/file_path.h" |
| 11 #include "base/time.h" | 11 #include "base/time.h" |
| 12 #include "components/web_contents_delegate_android/web_contents_delegate_android
.h" | 12 #include "components/web_contents_delegate_android/web_contents_delegate_android
.h" |
| 13 #include "content/public/browser/notification_observer.h" | 13 #include "content/public/browser/notification_observer.h" |
| 14 #include "content/public/browser/notification_registrar.h" | 14 #include "content/public/browser/notification_registrar.h" |
| 15 | 15 |
| 16 class FindNotificationDetails; | 16 class FindNotificationDetails; |
| 17 | 17 |
| 18 namespace content { | 18 namespace content { |
| 19 struct FileChooserParams; | 19 struct FileChooserParams; |
| 20 class WebContents; | 20 class WebContents; |
| (...skipping 65 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 86 base::TimeTicks navigation_start_time_; | 86 base::TimeTicks navigation_start_time_; |
| 87 }; | 87 }; |
| 88 | 88 |
| 89 // Register the native methods through JNI. | 89 // Register the native methods through JNI. |
| 90 bool RegisterChromeWebContentsDelegateAndroid(JNIEnv* env); | 90 bool RegisterChromeWebContentsDelegateAndroid(JNIEnv* env); |
| 91 | 91 |
| 92 } // namespace android | 92 } // namespace android |
| 93 } // namespace chrome | 93 } // namespace chrome |
| 94 | 94 |
| 95 #endif // CHROME_BROWSER_ANDROID_CHROME_WEB_CONTENTS_DELEGATE_ANDROID_H_ | 95 #endif // CHROME_BROWSER_ANDROID_CHROME_WEB_CONTENTS_DELEGATE_ANDROID_H_ |
| OLD | NEW |