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

Unified Diff: chrome/browser/ui/cocoa/web_intent_bubble_controller.h

Issue 9581041: Make web intents picker work as constrained dialog instead of InfoBubble (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Removed unneeded code Created 8 years, 9 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « no previous file | chrome/browser/ui/cocoa/web_intent_bubble_controller.mm » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/browser/ui/cocoa/web_intent_bubble_controller.h
diff --git a/chrome/browser/ui/cocoa/web_intent_bubble_controller.h b/chrome/browser/ui/cocoa/web_intent_bubble_controller.h
deleted file mode 100644
index e226fadc606d37c56287c8d50a534c981236d526..0000000000000000000000000000000000000000
--- a/chrome/browser/ui/cocoa/web_intent_bubble_controller.h
+++ /dev/null
@@ -1,42 +0,0 @@
-// Copyright (c) 2012 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.
-
-#ifndef CHROME_BROWSER_UI_COCOA_WEB_INTENT_BUBBLE_CONTROLLER_H_
-#define CHROME_BROWSER_UI_COCOA_WEB_INTENT_BUBBLE_CONTROLLER_H_
-#pragma once
-
-#import <Cocoa/Cocoa.h>
-
-#include "base/memory/scoped_nsobject.h"
-#import "chrome/browser/ui/cocoa/base_bubble_controller.h"
-#include "chrome/browser/ui/intents/web_intent_picker.h"
-
-class WebIntentPickerCocoa;
-class WebIntentPickerModel;
-
-// Controller for intent picker bubble. This bubble pops up whenever a web
-// page invokes ActivateIntent and lets the user choose which service should
-// be used to handle this action.
-@interface WebIntentBubbleController : BaseBubbleController {
- @private
- // C++ <-> ObjectiveC bridge. Weak reference.
- WebIntentPickerCocoa* picker_;
-
- // Inline disposition tab contents. Weak reference.
- TabContentsWrapper* contents_;
-}
-
-// Initialize the window, and connect to bridge.
-- (id)initWithPicker:(WebIntentPickerCocoa*)picker
- parentWindow:(NSWindow*)parent
- anchoredAt:(NSPoint)point;
-
-// Set the contents for inline disposition intents.
-- (void)setInlineDispositionTabContents:(TabContentsWrapper*)wrapper;
-
-- (void)performLayoutWithModel:(WebIntentPickerModel*)model;
-
-@end // WebIntentBubbleController
-
-#endif // CHROME_BROWSER_UI_COCOA_WEB_INTENT_BUBBLE_CONTROLLER_H_
« no previous file with comments | « no previous file | chrome/browser/ui/cocoa/web_intent_bubble_controller.mm » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698