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

Unified Diff: chrome/browser/ui/views/omnibox/omnibox_views.cc

Issue 16025004: Several cleanup items, and one visible change: (Closed) Base URL: svn://chrome-svn/chrome/trunk/src/
Patch Set: Created 7 years, 7 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 | « chrome/browser/ui/views/omnibox/omnibox_views.h ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/browser/ui/views/omnibox/omnibox_views.cc
===================================================================
--- chrome/browser/ui/views/omnibox/omnibox_views.cc (revision 202226)
+++ chrome/browser/ui/views/omnibox/omnibox_views.cc (working copy)
@@ -18,12 +18,14 @@
static_cast<OmniboxViewViews*>(view) : NULL;
}
+OmniboxViewWin* GetOmniboxViewWin(OmniboxView* view) {
#if defined(OS_WIN) && !defined(USE_AURA)
-OmniboxViewWin* GetOmniboxViewWin(OmniboxView* view) {
return views::Textfield::IsViewsTextfieldEnabled() ?
NULL : static_cast<OmniboxViewWin*>(view);
+#else
+ return NULL;
+#endif
}
-#endif
OmniboxView* CreateOmniboxView(OmniboxEditController* controller,
ToolbarModel* toolbar_model,
« no previous file with comments | « chrome/browser/ui/views/omnibox/omnibox_views.h ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698