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

Side by Side Diff: chrome/browser/printing/print_preview_test.cc

Issue 11417003: Reland r167487: Get full WebPluginInfo for the PDF plug-in before enabling it for print preview. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: review Created 8 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 unified diff | Download patch | Annotate | Revision Log
OLDNEW
(Empty)
1 // Copyright (c) 2012 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file.
4
5 #include "chrome/browser/printing/print_preview_test.h"
6
7 #include "chrome/browser/prefs/pref_service.h"
8 #include "chrome/common/pref_names.h"
9 #include "content/public/browser/plugin_service.h"
10
11 PrintPreviewTest::PrintPreviewTest() {}
12 PrintPreviewTest::~PrintPreviewTest() {}
13
14 void PrintPreviewTest::SetUp() {
15 BrowserWithTestWindowTest::SetUp();
16
17 // The PluginService will be destroyed at the end of the test (due to the
18 // ShadowingAtExitManager in our base class).
19 content::PluginService::GetInstance()->SetPluginListForTesting(
20 &plugin_list_);
21
22 profile()->GetPrefs()->SetBoolean(prefs::kPrintPreviewDisabled, false);
23 }
OLDNEW
« no previous file with comments | « chrome/browser/printing/print_preview_test.h ('k') | chrome/browser/ui/webui/print_preview/print_preview_ui_unittest.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698