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

Side by Side Diff: chrome/browser/resources/pdf/pdf_extension_test.cc

Issue 799643004: Combine PDF plugin into the Chromium binary. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 5 years, 10 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 unified diff | Download patch
OLDNEW
1 // Copyright 2014 The Chromium Authors. All rights reserved. 1 // Copyright 2014 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be 2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file. 3 // found in the LICENSE file.
4 4
5 #include "base/base_paths.h" 5 #include "base/base_paths.h"
6 #include "base/files/file_util.h" 6 #include "base/files/file_util.h"
7 #include "base/path_service.h" 7 #include "base/path_service.h"
8 #include "chrome/browser/extensions/component_loader.h" 8 #include "chrome/browser/extensions/component_loader.h"
9 #include "chrome/browser/extensions/extension_apitest.h" 9 #include "chrome/browser/extensions/extension_apitest.h"
10 #include "chrome/browser/extensions/extension_service.h" 10 #include "chrome/browser/extensions/extension_service.h"
(...skipping 23 matching lines...) Expand all
34 ASSERT_TRUE(embedded_test_server()->InitializeAndWaitUntilReady()); 34 ASSERT_TRUE(embedded_test_server()->InitializeAndWaitUntilReady());
35 } 35 }
36 36
37 37
38 virtual void TearDownOnMainThread() override { 38 virtual void TearDownOnMainThread() override {
39 ASSERT_TRUE(embedded_test_server()->ShutdownAndWaitUntilComplete()); 39 ASSERT_TRUE(embedded_test_server()->ShutdownAndWaitUntilComplete());
40 ExtensionApiTest::TearDownOnMainThread(); 40 ExtensionApiTest::TearDownOnMainThread();
41 } 41 }
42 42
43 void RunTestsInFile(std::string filename, std::string pdf_filename) { 43 void RunTestsInFile(std::string filename, std::string pdf_filename) {
44 base::FilePath pdf_path;
45 ASSERT_TRUE(PathService::Get(chrome::FILE_PDF_PLUGIN, &pdf_path));
46 ASSERT_TRUE(
47 content::PluginService::GetInstance()->GetRegisteredPpapiPluginInfo(
48 pdf_path));
49 ExtensionService* service = extensions::ExtensionSystem::Get( 44 ExtensionService* service = extensions::ExtensionSystem::Get(
50 profile())->extension_service(); 45 profile())->extension_service();
51 service->component_loader()->Add(IDR_PDF_MANIFEST, 46 service->component_loader()->Add(IDR_PDF_MANIFEST,
52 base::FilePath(FILE_PATH_LITERAL("pdf"))); 47 base::FilePath(FILE_PATH_LITERAL("pdf")));
53 const extensions::Extension* extension = 48 const extensions::Extension* extension =
54 extensions::ExtensionRegistry::Get(profile()) 49 extensions::ExtensionRegistry::Get(profile())
55 ->enabled_extensions() 50 ->enabled_extensions()
56 .GetByID("mhjfbmdgcfjbbpaeojofohoefgiehjai"); 51 .GetByID("mhjfbmdgcfjbbpaeojofohoefgiehjai");
57 ASSERT_TRUE(extension); 52 ASSERT_TRUE(extension);
58 ASSERT_TRUE(MimeTypesHandler::GetHandler( 53 ASSERT_TRUE(MimeTypesHandler::GetHandler(
(...skipping 46 matching lines...) Expand 10 before | Expand all | Expand 10 after
105 RunTestsInFile("bookmarks_test.js", "test-bookmarks.pdf"); 100 RunTestsInFile("bookmarks_test.js", "test-bookmarks.pdf");
106 } 101 }
107 102
108 IN_PROC_BROWSER_TEST_F(PDFExtensionTest, Navigator) { 103 IN_PROC_BROWSER_TEST_F(PDFExtensionTest, Navigator) {
109 RunTestsInFile("navigator_test.js", "test.pdf"); 104 RunTestsInFile("navigator_test.js", "test.pdf");
110 } 105 }
111 106
112 IN_PROC_BROWSER_TEST_F(PDFExtensionTest, ParamsParser) { 107 IN_PROC_BROWSER_TEST_F(PDFExtensionTest, ParamsParser) {
113 RunTestsInFile("params_parser_test.js", "test.pdf"); 108 RunTestsInFile("params_parser_test.js", "test.pdf");
114 } 109 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698