blob: cbba6bd9bc7b6e5802b26318c5ea62220a938a18 [file] [log] [blame]
// Copyright 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 IOS_CHROME_BROWSER_UI_URL_LOADER_H_
#define IOS_CHROME_BROWSER_UI_URL_LOADER_H_
#import <Foundation/Foundation.h>
#import "ios/chrome/browser/ui/chrome_load_params.h"
@class OpenNewTabCommand;
namespace sessions {
struct SessionTab;
}
@protocol UrlLoader
// Load a new request.
// TODO(crbug.com/907527): Check if it is possible to merge with the other way
// of loading a URL.
- (void)loadURLWithParams:(const ChromeLoadParams&)params;
// Load a new URL on a new page/tab. The |referrer| is optional. The tab will be
// placed in the model according to |appendTo|. |originPoint| is used when the
// tab is opened in background as the origin point for the animation, it is not
// used if the tab is opened in foreground.
// TODO(crbug.com/907527): Check if it is possible to merge with the other way
// of loading a URL.
- (void)webPageOrderedOpen:(OpenNewTabCommand*)command;
@end
#endif // IOS_CHROME_BROWSER_UI_URL_LOADER_H_