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

Side by Side Diff: chrome/browser/android/tab_android_stubs.cc

Issue 10803010: Upstream TabAndroid abstract class. (Closed) Base URL: http://git.chromium.org/chromium/src.git@os_compat
Patch Set: Created 8 years, 5 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
(Empty)
1 // Copyright (c) 2012 The Chromium Authors. All rights reserved.
Yaron 2012/07/19 22:21:28 nit: rename tab_android_test_stubs.cc. It took me
felipeg 2012/07/20 09:39:09 Done.
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 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698