| 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 ANDROID_WEBVIEW_NATIVE_AW_CONTENTS_H_ | 5 #ifndef ANDROID_WEBVIEW_BROWSER_AW_CONTENTS_H_ |
| 6 #define ANDROID_WEBVIEW_NATIVE_AW_CONTENTS_H_ | 6 #define ANDROID_WEBVIEW_BROWSER_AW_CONTENTS_H_ |
| 7 | 7 |
| 8 #include <jni.h> | 8 #include <jni.h> |
| 9 | 9 |
| 10 #include <list> | 10 #include <list> |
| 11 #include <memory> | 11 #include <memory> |
| 12 #include <string> | 12 #include <string> |
| 13 #include <utility> | 13 #include <utility> |
| 14 | 14 |
| 15 #include "android_webview/browser/aw_browser_permission_request_delegate.h" | 15 #include "android_webview/browser/aw_browser_permission_request_delegate.h" |
| 16 #include "android_webview/browser/aw_render_process_gone_delegate.h" | 16 #include "android_webview/browser/aw_render_process_gone_delegate.h" |
| 17 #include "android_webview/browser/aw_renderer_priority_manager.h" |
| 17 #include "android_webview/browser/aw_safe_browsing_ui_manager.h" | 18 #include "android_webview/browser/aw_safe_browsing_ui_manager.h" |
| 18 #include "android_webview/browser/browser_view_renderer.h" | 19 #include "android_webview/browser/browser_view_renderer.h" |
| 19 #include "android_webview/browser/browser_view_renderer_client.h" | 20 #include "android_webview/browser/browser_view_renderer_client.h" |
| 20 #include "android_webview/browser/find_helper.h" | 21 #include "android_webview/browser/find_helper.h" |
| 21 #include "android_webview/browser/gl_view_renderer_manager.h" | 22 #include "android_webview/browser/gl_view_renderer_manager.h" |
| 22 #include "android_webview/browser/icon_helper.h" | 23 #include "android_webview/browser/icon_helper.h" |
| 24 #include "android_webview/browser/permission/permission_request_handler_client.h
" |
| 23 #include "android_webview/browser/render_thread_manager.h" | 25 #include "android_webview/browser/render_thread_manager.h" |
| 24 #include "android_webview/browser/render_thread_manager_client.h" | 26 #include "android_webview/browser/render_thread_manager_client.h" |
| 25 #include "android_webview/browser/renderer_host/aw_render_view_host_ext.h" | 27 #include "android_webview/browser/renderer_host/aw_render_view_host_ext.h" |
| 26 #include "android_webview/native/aw_renderer_priority_manager.h" | |
| 27 #include "android_webview/native/permission/permission_request_handler_client.h" | |
| 28 #include "base/android/jni_weak_ref.h" | 28 #include "base/android/jni_weak_ref.h" |
| 29 #include "base/android/scoped_java_ref.h" | 29 #include "base/android/scoped_java_ref.h" |
| 30 #include "base/callback_forward.h" | 30 #include "base/callback_forward.h" |
| 31 #include "base/macros.h" | 31 #include "base/macros.h" |
| 32 #include "content/public/browser/render_process_host_observer.h" | 32 #include "content/public/browser/render_process_host_observer.h" |
| 33 #include "content/public/browser/web_contents_observer.h" | 33 #include "content/public/browser/web_contents_observer.h" |
| 34 | 34 |
| 35 class SkBitmap; | 35 class SkBitmap; |
| 36 class TabContents; | 36 class TabContents; |
| 37 | 37 |
| (...skipping 381 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 419 AwRendererPriorityManager::RendererPriority renderer_requested_priority_; | 419 AwRendererPriorityManager::RendererPriority renderer_requested_priority_; |
| 420 bool renderer_priority_waived_when_not_visible_; | 420 bool renderer_priority_waived_when_not_visible_; |
| 421 | 421 |
| 422 DISALLOW_COPY_AND_ASSIGN(AwContents); | 422 DISALLOW_COPY_AND_ASSIGN(AwContents); |
| 423 }; | 423 }; |
| 424 | 424 |
| 425 bool RegisterAwContents(JNIEnv* env); | 425 bool RegisterAwContents(JNIEnv* env); |
| 426 | 426 |
| 427 } // namespace android_webview | 427 } // namespace android_webview |
| 428 | 428 |
| 429 #endif // ANDROID_WEBVIEW_NATIVE_AW_CONTENTS_H_ | 429 #endif // ANDROID_WEBVIEW_BROWSER_AW_CONTENTS_H_ |
| OLD | NEW |