OLD | NEW |
---|---|
(Empty) | |
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 | |
3 // found in the LICENSE file. | |
4 | |
5 // This file contains stubs for some Chrome for Android specific code that is | |
6 // needed to compile some tests. | |
7 | |
8 #include "chrome/browser/android/tab_android.h" | |
9 | |
10 // static | |
11 TabAndroid* TabAndroid::FromWebContents(content::WebContents* web_contents) { | |
12 return NULL; | |
13 } | |
14 | |
15 // static | |
16 TabAndroid* TabAndroid::GetNativeTab(JNIEnv* env, jobject obj) { | |
17 return NULL; | |
18 } | |
OLD | NEW |