Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(208)

Side by Side Diff: components/web_contents_delegate_android/web_contents_delegate_android.cc

Issue 562603002: Move PageTransition from //content/public/common to //ui/base (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Rebase Created 6 years, 3 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
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 #include "components/web_contents_delegate_android/web_contents_delegate_android .h" 5 #include "components/web_contents_delegate_android/web_contents_delegate_android .h"
6 6
7 #include <android/keycodes.h> 7 #include <android/keycodes.h>
8 8
9 #include "base/android/jni_android.h" 9 #include "base/android/jni_android.h"
10 #include "base/android/jni_array.h" 10 #include "base/android/jni_array.h"
11 #include "base/android/jni_string.h" 11 #include "base/android/jni_string.h"
12 #include "components/web_contents_delegate_android/color_chooser_android.h" 12 #include "components/web_contents_delegate_android/color_chooser_android.h"
13 #include "components/web_contents_delegate_android/validation_message_bubble_and roid.h" 13 #include "components/web_contents_delegate_android/validation_message_bubble_and roid.h"
14 #include "content/public/browser/android/content_view_core.h" 14 #include "content/public/browser/android/content_view_core.h"
15 #include "content/public/browser/color_chooser.h" 15 #include "content/public/browser/color_chooser.h"
16 #include "content/public/browser/global_request_id.h" 16 #include "content/public/browser/global_request_id.h"
17 #include "content/public/browser/invalidate_type.h" 17 #include "content/public/browser/invalidate_type.h"
18 #include "content/public/browser/native_web_keyboard_event.h" 18 #include "content/public/browser/native_web_keyboard_event.h"
19 #include "content/public/browser/navigation_controller.h" 19 #include "content/public/browser/navigation_controller.h"
20 #include "content/public/browser/page_navigator.h" 20 #include "content/public/browser/page_navigator.h"
21 #include "content/public/browser/render_widget_host_view.h" 21 #include "content/public/browser/render_widget_host_view.h"
22 #include "content/public/browser/web_contents.h" 22 #include "content/public/browser/web_contents.h"
23 #include "content/public/common/page_transition_types.h"
24 #include "content/public/common/referrer.h" 23 #include "content/public/common/referrer.h"
25 #include "jni/WebContentsDelegateAndroid_jni.h" 24 #include "jni/WebContentsDelegateAndroid_jni.h"
26 #include "ui/base/window_open_disposition.h" 25 #include "ui/base/window_open_disposition.h"
27 #include "ui/gfx/rect.h" 26 #include "ui/gfx/rect.h"
28 #include "url/gurl.h" 27 #include "url/gurl.h"
29 28
30 using base::android::AttachCurrentThread; 29 using base::android::AttachCurrentThread;
31 using base::android::ConvertUTF8ToJavaString; 30 using base::android::ConvertUTF8ToJavaString;
32 using base::android::ConvertUTF16ToJavaString; 31 using base::android::ConvertUTF16ToJavaString;
33 using base::android::ScopedJavaLocalRef; 32 using base::android::ScopedJavaLocalRef;
(...skipping 350 matching lines...) Expand 10 before | Expand all | Expand 10 after
384 // Native JNI methods 383 // Native JNI methods
385 // ---------------------------------------------------------------------------- 384 // ----------------------------------------------------------------------------
386 385
387 // Register native methods 386 // Register native methods
388 387
389 bool RegisterWebContentsDelegateAndroid(JNIEnv* env) { 388 bool RegisterWebContentsDelegateAndroid(JNIEnv* env) {
390 return RegisterNativesImpl(env); 389 return RegisterNativesImpl(env);
391 } 390 }
392 391
393 } // namespace web_contents_delegate_android 392 } // namespace web_contents_delegate_android
OLDNEW
« no previous file with comments | « components/translate/content/browser/content_translate_driver.cc ('k') | content/browser/android/content_view_core_impl.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698