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_ANDROID_CONTENT_VIEW_CLIENT_H_ | 5 #ifndef CONTENT_BROWSER_ANDROID_CONTENT_VIEW_CLIENT_H_ |
6 #define CONTENT_BROWSER_ANDROID_CONTENT_VIEW_CLIENT_H_ | 6 #define CONTENT_BROWSER_ANDROID_CONTENT_VIEW_CLIENT_H_ |
7 #pragma once | |
8 | 7 |
9 #include "base/android/jni_helper.h" | 8 #include "base/android/jni_helper.h" |
10 #include "base/compiler_specific.h" | 9 #include "base/compiler_specific.h" |
11 #include "content/public/browser/native_web_keyboard_event.h" | 10 #include "content/public/browser/native_web_keyboard_event.h" |
12 #include "content/public/browser/web_contents_delegate.h" | 11 #include "content/public/browser/web_contents_delegate.h" |
13 #include "content/public/common/javascript_message_type.h" | 12 #include "content/public/common/javascript_message_type.h" |
14 #include "content/public/common/referrer.h" | 13 #include "content/public/common/referrer.h" |
15 #include "googleurl/src/gurl.h" | 14 #include "googleurl/src/gurl.h" |
16 #include "net/base/net_errors.h" | 15 #include "net/base/net_errors.h" |
17 | 16 |
(...skipping 168 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
186 // Indicates the load state of the page. 0.0 means nothing loaded, 1 means | 185 // Indicates the load state of the page. 0.0 means nothing loaded, 1 means |
187 // fully loaded. | 186 // fully loaded. |
188 double load_progress_; | 187 double load_progress_; |
189 }; | 188 }; |
190 | 189 |
191 bool RegisterContentViewClient(JNIEnv* env); | 190 bool RegisterContentViewClient(JNIEnv* env); |
192 | 191 |
193 } // namespace content | 192 } // namespace content |
194 | 193 |
195 #endif // CONTENT_BROWSER_ANDROID_CONTENT_VIEW_CLIENT_H_ | 194 #endif // CONTENT_BROWSER_ANDROID_CONTENT_VIEW_CLIENT_H_ |
OLD | NEW |