From a1fcc1d501e1e8e85d97795c1c450f5325a82614 Mon Sep 17 00:00:00 2001 From: "blundell@chromium.org" Date: Sun, 8 Jun 2014 11:47:58 +0000 Subject: Componentize GoogleURLTracker(InfoBarDelegate,MapEntry,NavHelper) This CL moves GoogleURLTracker and associated friends to the Google component. It additionally moves strings that GoogleURLTrackerInfoBarDelegate into components_strings.grd (via google_strings.grdp). Dependencies of this code on google_util are temporarily punched through the embedder, as google_util will require more time to componentize. Once google_util is componentized, the indirection through the embedder will be removed. BUG=373209,373222 TBR=thakis, cbentzel Review URL: https://codereview.chromium.org/316203003 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@275743 0039d316-1c4b-4281-b951-d872f2087c98 --- chrome/common/net/chrome_url_fixer_client.cc | 11 +++++++++++ chrome/common/net/chrome_url_fixer_client.h | 18 ++++++++++++++++++ 2 files changed, 29 insertions(+) create mode 100644 chrome/common/net/chrome_url_fixer_client.cc create mode 100644 chrome/common/net/chrome_url_fixer_client.h (limited to 'chrome/common/net') diff --git a/chrome/common/net/chrome_url_fixer_client.cc b/chrome/common/net/chrome_url_fixer_client.cc new file mode 100644 index 0000000..97b5462 --- /dev/null +++ b/chrome/common/net/chrome_url_fixer_client.cc @@ -0,0 +1,11 @@ +// Copyright 2014 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/net/chrome_url_fixer_client.h" + +ChromeURLFixerClient::ChromeURLFixerClient() { +} + +ChromeURLFixerClient::~ChromeURLFixerClient() { +} diff --git a/chrome/common/net/chrome_url_fixer_client.h b/chrome/common/net/chrome_url_fixer_client.h new file mode 100644 index 0000000..03e8bfe --- /dev/null +++ b/chrome/common/net/chrome_url_fixer_client.h @@ -0,0 +1,18 @@ +// Copyright 2014 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. + +#ifndef CHROME_COMMON_NET_CHROME_URL_FIXER_CLIENT_H_ +#define CHROME_COMMON_NET_CHROME_URL_FIXER_CLIENT_H_ + +#include "base/basictypes.h" +#include "chrome/common/net/url_fixer_client.h" + +// Chrome-specific implementation of URLFixerClient. +class ChromeURLFixerClient : public URLFixerClient { + public: + ChromeURLFixerClient(); + virtual ~ChromeURLFixerClient(); +}; + +#endif // CHROME_COMMON_NET_CHROME_URL_FIXER_CLIENT_H_ -- cgit v1.1