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

Side by Side Diff: chrome/browser/ui/intents/web_intent_picker_factory.h

Issue 7778032: Revert 98888 - Web Intent Picker UI (implemented as a constrained dialog, linux only) (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src/
Patch Set: Created 9 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
OLDNEW
(Empty)
1 // Copyright (c) 2011 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 #ifndef CHROME_BROWSER_UI_INTENTS_WEB_INTENT_PICKER_FACTORY_H_
6 #define CHROME_BROWSER_UI_INTENTS_WEB_INTENT_PICKER_FACTORY_H_
7 #pragma once
8
9 class TabContents;
10 class WebIntentPicker;
11 class WebIntentPickerDelegate;
12
13 // Interface to create and close the WebIntentPicker UI.
14 class WebIntentPickerFactory {
15 public:
16 virtual ~WebIntentPickerFactory() {}
17
18 // Creates a new WebIntentPicker. The picker is owned by the factory.
19 virtual WebIntentPicker* Create(TabContents* tab_contents,
20 WebIntentPickerDelegate* delegate) = 0;
21
22 // Closes and destroys the picker.
23 virtual void ClosePicker(WebIntentPicker* picker) = 0;
24 };
25
26 #endif // CHROME_BROWSER_UI_INTENTS_WEB_INTENT_PICKER_FACTORY_H_
OLDNEW
« no previous file with comments | « chrome/browser/ui/intents/web_intent_picker_delegate.h ('k') | chrome/browser/ui/tab_contents/tab_contents_wrapper.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698