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

Unified Diff: chrome_frame/ready_mode/internal/url_launcher.h

Issue 6314016: Update the Ready Mode UI in response to feedback from UI leads, Chrome Frame ... (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src/
Patch Set: '' Created 9 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 side-by-side diff with in-line comments
Download patch
Index: chrome_frame/ready_mode/internal/url_launcher.h
===================================================================
--- chrome_frame/ready_mode/internal/url_launcher.h (revision 0)
+++ chrome_frame/ready_mode/internal/url_launcher.h (revision 0)
@@ -0,0 +1,20 @@
+// Copyright (c) 2010 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_FRAME_READY_MODE_INTERNAL_URL_LAUNCHER_H_
+#define CHROME_FRAME_READY_MODE_INTERNAL_URL_LAUNCHER_H_
+#pragma once
+
+// Implements the launching of a new browser window/tab. The
+// ReadyPromptContent invokes this, in response to user action, to display
+// documentation about Ready Mode.
+class UrlLauncher {
+ public:
+ virtual ~UrlLauncher() {}
+
+ // Displays the specified URL in a new window or tab.
+ virtual void LaunchUrl(const std::wstring& url) = 0;
+}; // class UrlHelper
+
+#endif // CHROME_FRAME_READY_MODE_INTERNAL_URL_LAUNCHER_H_

Powered by Google App Engine
This is Rietveld 408576698