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

Unified Diff: chrome/browser/ui/views/frame/native_browser_frame_factory_auralinux.cc

Issue 1581473002: Remove base/win/metro.{cc|h} and some associated code (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: fixes Created 4 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/browser/ui/views/frame/native_browser_frame_factory_auralinux.cc
diff --git a/chrome/browser/ui/views/frame/native_browser_frame_factory_auralinux.cc b/chrome/browser/ui/views/frame/native_browser_frame_factory_auralinux.cc
index 16e4cd1490bcb31eaf93e2ec9fb678942a947663..f45b2a2e2eb8d8cc880fb2e4edb28794949d11f3 100644
--- a/chrome/browser/ui/views/frame/native_browser_frame_factory_auralinux.cc
+++ b/chrome/browser/ui/views/frame/native_browser_frame_factory_auralinux.cc
@@ -6,10 +6,6 @@
#include "chrome/browser/ui/views/frame/desktop_browser_frame_auralinux.h"
-#if defined(USE_ASH)
-#include "chrome/browser/ui/views/frame/browser_frame_ash.h"
-#endif
-
#if defined(MOJO_SHELL_CLIENT)
#include "chrome/browser/ui/views/frame/browser_frame_mus.h"
#include "content/public/common/mojo_shell_connection.h"
@@ -23,10 +19,5 @@ NativeBrowserFrame* NativeBrowserFrameFactory::Create(
return new BrowserFrameMus(browser_frame, browser_view);
#endif
-#if defined(USE_ASH)
- if (ShouldCreateForAshDesktop(browser_view))
- return new BrowserFrameAsh(browser_frame, browser_view);
-#endif
-
return new DesktopBrowserFrameAuraLinux(browser_frame, browser_view);
}

Powered by Google App Engine
This is Rietveld 408576698