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

Side by Side Diff: chrome_frame/ready_mode/internal/url_launcher.h

Issue 126143005: Remove Chrome Frame code and resources. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: sync to r244038 Created 6 years, 11 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) 2010 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_FRAME_READY_MODE_INTERNAL_URL_LAUNCHER_H_
6 #define CHROME_FRAME_READY_MODE_INTERNAL_URL_LAUNCHER_H_
7
8 // Implements the launching of a new browser window/tab. The
9 // ReadyPromptContent invokes this, in response to user action, to display
10 // documentation about Ready Mode.
11 class UrlLauncher {
12 public:
13 virtual ~UrlLauncher() {}
14
15 // Displays the specified URL in a new window or tab.
16 virtual void LaunchUrl(const std::wstring& url) = 0;
17 }; // class UrlHelper
18
19 #endif // CHROME_FRAME_READY_MODE_INTERNAL_URL_LAUNCHER_H_
OLDNEW
« no previous file with comments | « chrome_frame/ready_mode/internal/ready_mode_web_browser_adapter.cc ('k') | chrome_frame/register_bho.rgs » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698