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

Unified Diff: chrome/common/thumbnail_support.cc

Issue 10704190: Support in-browser thumbnailing on Windows XP. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: rebase Created 8 years, 5 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/tab_contents/thumbnail_generator.cc ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/common/thumbnail_support.cc
diff --git a/chrome/common/thumbnail_support.cc b/chrome/common/thumbnail_support.cc
index b6e836407cf1568c822ae20f7b68971ffff1a7a4..e64eaa185f9ca869e1d431b984e8a3b79eac3d76 100644
--- a/chrome/common/thumbnail_support.cc
+++ b/chrome/common/thumbnail_support.cc
@@ -7,21 +7,7 @@
#include "base/command_line.h"
#include "chrome/common/chrome_switches.h"
-#if defined(OS_WIN)
-#include "base/win/windows_version.h"
-#endif
-
bool ShouldEnableInBrowserThumbnailing() {
- if (CommandLine::ForCurrentProcess()->HasSwitch(
- switches::kDisableInBrowserThumbnailing))
- return false;
-
-#if defined(OS_WIN)
- // Disables in-browser thumbnailing on Windows XP where not supported yet.
- if (base::win::GetVersion() < base::win::VERSION_VISTA)
- return false;
- return true;
-#else
- return true;
-#endif
+ return !CommandLine::ForCurrentProcess()->HasSwitch(
+ switches::kDisableInBrowserThumbnailing);
}
« no previous file with comments | « chrome/browser/tab_contents/thumbnail_generator.cc ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698