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

Unified Diff: chrome/browser/ui/views/frame/browser_non_client_frame_view.h

Issue 5747001: Add the virtual keyboard to BrowserFrameChromeos. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: clean-up Created 10 years 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/browser/ui/views/frame/browser_non_client_frame_view.h
diff --git a/chrome/browser/ui/views/frame/browser_non_client_frame_view.h b/chrome/browser/ui/views/frame/browser_non_client_frame_view.h
index 2fec30418391515fa3cb70a501a71aa79e74a5c4..73776a504470df0b1e64ab095bb1fee030166918 100644
--- a/chrome/browser/ui/views/frame/browser_non_client_frame_view.h
+++ b/chrome/browser/ui/views/frame/browser_non_client_frame_view.h
@@ -9,6 +9,8 @@
#include "views/window/non_client_view.h"
class BaseTabStrip;
+class BrowserFrame;
+class BrowserView;
// A specialization of the NonClientFrameView object that provides additional
// Browser-specific methods.
@@ -30,4 +32,12 @@ class BrowserNonClientFrameView : public views::NonClientFrameView {
virtual void UpdateThrobber(bool running) = 0;
};
+namespace browser {
+
+// Provided by a browser_non_client_frame_view_factory_*.cc implementation
+BrowserNonClientFrameView* CreateBrowserNonClientFrameView(
+ bool is_popup, BrowserFrame* frame, BrowserView* browser_view);
sky 2010/12/10 18:18:20 Since you're passing in the browserview can we nuk
bryeung 2010/12/10 23:58:59 Yes, I think you're right about is_popup. For the
+
+} // browser
+
#endif // CHROME_BROWSER_UI_VIEWS_FRAME_BROWSER_NON_CLIENT_FRAME_VIEW_H_

Powered by Google App Engine
This is Rietveld 408576698