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

Side by Side Diff: chrome/android/testshell/testshell_stubs.cc

Issue 10918113: Add initial Chromium TestShell support for Android (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Remove commented out lines. Created 8 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 | Annotate | Revision Log
« no previous file with comments | « chrome/android/testshell/testshell_entry_point.cc ('k') | chrome/app/DEPS » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
(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 #include "chrome/browser/android/tab_android.h"
6 #include "chrome/browser/autofill/autofill_external_delegate.h"
7
8 // This file contains temporary stubs to allow the libtestshell target to
9 // compile. They will be removed once real implementations are
10 // written/upstreamed, or once other code is refactored to eliminate the
11 // need for them.
12
13 // static
14 TabAndroid* TabAndroid::FromWebContents(content::WebContents* web_contents) {
15 return NULL;
16 }
17
18 // static
19 AutofillExternalDelegate* AutofillExternalDelegate::Create(
20 TabContents* tab_contents,
21 AutofillManager* manager) {
22 return NULL;
23 }
OLDNEW
« no previous file with comments | « chrome/android/testshell/testshell_entry_point.cc ('k') | chrome/app/DEPS » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698