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 #include "chrome/android/testshell/testshell_tab.h" | 5 #include "chrome/android/testshell/testshell_tab.h" |
6 | 6 |
7 #include "base/android/jni_string.h" | 7 #include "base/android/jni_string.h" |
8 #include "base/logging.h" | 8 #include "base/logging.h" |
9 #include "chrome/browser/android/chrome_web_contents_delegate_android.h" | 9 #include "chrome/browser/android/chrome_web_contents_delegate_android.h" |
10 #include "chrome/browser/ui/android/window_android_helper.h" | 10 #include "chrome/browser/ui/android/window_android_helper.h" |
(...skipping 23 matching lines...) Expand all Loading... |
34 void TestShellTab::Destroy(JNIEnv* env, jobject obj) { | 34 void TestShellTab::Destroy(JNIEnv* env, jobject obj) { |
35 delete this; | 35 delete this; |
36 } | 36 } |
37 | 37 |
38 void TestShellTab::OnReceivedHttpAuthRequest(jobject auth_handler, | 38 void TestShellTab::OnReceivedHttpAuthRequest(jobject auth_handler, |
39 const string16& host, | 39 const string16& host, |
40 const string16& realm) { | 40 const string16& realm) { |
41 NOTIMPLEMENTED(); | 41 NOTIMPLEMENTED(); |
42 } | 42 } |
43 | 43 |
44 void TestShellTab::ShowContextMenu( | |
45 const content::ContextMenuParams& params) { | |
46 NOTIMPLEMENTED(); | |
47 } | |
48 | |
49 void TestShellTab::ShowCustomContextMenu( | |
50 const content::ContextMenuParams& params, | |
51 const base::Callback<void(int)>& callback) { | |
52 NOTIMPLEMENTED(); | |
53 } | |
54 | |
55 void TestShellTab::AddShortcutToBookmark( | 44 void TestShellTab::AddShortcutToBookmark( |
56 const GURL& url, const string16& title, const SkBitmap& skbitmap, | 45 const GURL& url, const string16& title, const SkBitmap& skbitmap, |
57 int r_value, int g_value, int b_value) { | 46 int r_value, int g_value, int b_value) { |
58 NOTIMPLEMENTED(); | 47 NOTIMPLEMENTED(); |
59 } | 48 } |
60 | 49 |
61 void TestShellTab::EditBookmark(int64 node_id, | 50 void TestShellTab::EditBookmark(int64 node_id, |
62 const base::string16& node_title, | 51 const base::string16& node_title, |
63 bool is_folder, | 52 bool is_folder, |
64 bool is_partner_bookmark) { | 53 bool is_partner_bookmark) { |
(...skipping 26 matching lines...) Expand all Loading... |
91 std::string fixed_spec; | 80 std::string fixed_spec; |
92 if (fixed_url.is_valid()) | 81 if (fixed_url.is_valid()) |
93 fixed_spec = fixed_url.spec(); | 82 fixed_spec = fixed_url.spec(); |
94 | 83 |
95 return ConvertUTF8ToJavaString(env, fixed_spec); | 84 return ConvertUTF8ToJavaString(env, fixed_spec); |
96 } | 85 } |
97 | 86 |
98 static jlong Init(JNIEnv* env, jobject obj) { | 87 static jlong Init(JNIEnv* env, jobject obj) { |
99 return reinterpret_cast<intptr_t>(new TestShellTab(env, obj)); | 88 return reinterpret_cast<intptr_t>(new TestShellTab(env, obj)); |
100 } | 89 } |
OLD | NEW |