move constants to atom_constants.h

This commit is contained in:
deepak1556 2017-02-03 15:06:53 +05:30
parent 671a8a2cd6
commit e90fd1444f
7 changed files with 27 additions and 22 deletions

View file

@ -4,6 +4,7 @@
#include "atom/browser/ui/webui/pdf_viewer_handler.h"
#include "atom/common/atom_constants.h"
#include "base/bind.h"
#include "base/values.h"
#include "content/public/browser/stream_handle.h"
@ -11,6 +12,7 @@
#include "content/public/browser/web_contents.h"
#include "content/public/browser/web_ui.h"
#include "content/public/common/page_zoom.h"
#include "content/public/common/url_constants.h"
#include "net/http/http_response_headers.h"
#include "ui/base/l10n/l10n_util.h"
#include "ui/base/webui/web_ui_util.h"
@ -145,7 +147,6 @@ void PdfViewerHandler::GetStrings(const base::ListValue* args) {
SET_STRING("labelPageNumber", "Page number");
SET_STRING("tooltipRotateCW", "Rotate clockwise");
SET_STRING("tooltipDownload", "Download");
SET_STRING("tooltipPrint", "Print");
SET_STRING("tooltipFitToPage", "Fit to page");
SET_STRING("tooltipFitToWidth", "Fit to width");
SET_STRING("tooltipZoomIn", "Zoom in");
@ -161,7 +162,8 @@ void PdfViewerHandler::OnZoomLevelChanged(
const content::HostZoomMap::ZoomLevelChange& change) {
// TODO(deepak1556): This will work only if zoom level is changed through host
// zoom map.
if (change.scheme == "chrome" && change.host == "pdf-viewer") {
if (change.scheme == content::kChromeUIScheme &&
change.host == kPdfViewerUIHost) {
CallJavascriptFunction(
"cr.webUIListenerCallback", base::StringValue("onZoomLevelChanged"),
base::FundamentalValue(

View file

@ -9,6 +9,7 @@
#include "atom/browser/atom_browser_context.h"
#include "atom/browser/stream_manager.h"
#include "atom/browser/ui/webui/pdf_viewer_handler.h"
#include "atom/common/atom_constants.h"
#include "components/pdf/common/pdf_messages.h"
#include "content/public/browser/render_view_host.h"
#include "content/public/browser/url_data_source.h"
@ -23,7 +24,7 @@ namespace atom {
namespace {
std::string PathWithoutParams(const std::string& path) {
return GURL(PdfViewerUI::kOrigin + path).path().substr(1);
return GURL(kPdfViewerUIOrigin + path).path().substr(1);
}
class BundledDataSource : public content::URLDataSource {
@ -41,7 +42,7 @@ class BundledDataSource : public content::URLDataSource {
}
// content::URLDataSource implementation.
std::string GetSource() const override { return PdfViewerUI::kHost; }
std::string GetSource() const override { return kPdfViewerUIHost; }
void StartDataRequest(const std::string& path,
int render_process_id,
@ -83,11 +84,6 @@ class BundledDataSource : public content::URLDataSource {
} // namespace
const char PdfViewerUI::kOrigin[] = "chrome://pdf-viewer/";
const char PdfViewerUI::kHost[] = "pdf-viewer";
const char PdfViewerUI::kId[] = "viewId";
const char PdfViewerUI::kSrc[] = "src";
PdfViewerUI::PdfViewerUI(content::BrowserContext* browser_context,
content::WebUI* web_ui,
const std::string& view_id,

View file

@ -22,11 +22,6 @@ namespace atom {
class PdfViewerUI : public content::WebUIController,
public content::WebContentsObserver {
public:
static const char kOrigin[];
static const char kHost[];
static const char kId[];
static const char kSrc[];
PdfViewerUI(content::BrowserContext* browser_context,
content::WebUI* web_ui,
const std::string& view_id,