blob: 50b5360b9a86e19b378999e462c7022fd7fea71f (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
// Copyright (c) 2011 The Chromium Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
#include "chrome/browser/ui/intents/web_intent_picker.h"
#include "chrome/browser/ui/intents/web_intent_picker_delegate.h"
#include "content/browser/tab_contents/tab_contents.h"
#include "ui/gfx/native_widget_types.h"
// static
WebIntentPicker* WebIntentPicker::Create(gfx::NativeWindow parent,
TabContentsWrapper* wrapper,
WebIntentPickerDelegate* delegate) {
// TODO(binji) Implement. See http://crbug.com/93915.
return NULL;
}
|