blob: 1366572b13c963ae94e78664b98816af06881135 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
// Copyright 2013 The Chromium Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
#include "chrome/common/chrome_content_client.h"
namespace chrome {
const char* const ChromeContentClient::kPDFPluginName = "Chrome PDF Viewer";
const char* const ChromeContentClient::kNaClPluginName = "Native Client";
const char* const ChromeContentClient::kNaClOldPluginName = "Chrome NaCl";
const base::FilePath::CharType
ChromeContentClient::kRemotingViewerPluginPath[] =
FILE_PATH_LITERAL("internal-remoting-viewer");
} // namespace chrome
|