diff options
author | sdefresne@chromium.org <sdefresne@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2014-05-30 15:43:17 +0000 |
---|---|---|
committer | sdefresne@chromium.org <sdefresne@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2014-05-30 15:43:17 +0000 |
commit | 69843a9c0e585bc26bcb5ded92ad31a9ecee3676 (patch) | |
tree | 67c2f63333b99541ba5d901bc78058fa7cd06648 /components/history.gypi | |
parent | 21290a8608c66e85e4a0f82f4c4f948d3e4460f4 (diff) | |
download | chromium_src-69843a9c0e585bc26bcb5ded92ad31a9ecee3676.zip chromium_src-69843a9c0e585bc26bcb5ded92ad31a9ecee3676.tar.gz chromium_src-69843a9c0e585bc26bcb5ded92ad31a9ecee3676.tar.bz2 |
Introduce HistoryClient interface
Introduce the HistoryClient interface that will abstract the embedder for
the history component. The implementation in //chrome ChromeHistoryClient
owns the HistoryService and implements the KeyedService interface.
BUG=371825
TBR=sky, zea
Review URL: https://codereview.chromium.org/305443004
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@273846 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'components/history.gypi')
-rw-r--r-- | components/history.gypi | 22 |
1 files changed, 22 insertions, 0 deletions
diff --git a/components/history.gypi b/components/history.gypi new file mode 100644 index 0000000..8b7821e --- /dev/null +++ b/components/history.gypi @@ -0,0 +1,22 @@ +# 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. + +{ + 'targets': [ + { + 'target_name': 'history_core_browser', + 'type': 'none', + 'include_dirs': [ + '..', + ], + 'dependencies': [ + '../base/base.gyp:base', + 'keyed_service_core', + ], + 'sources': [ + 'history/core/browser/history_client.h', + ], + }, + ], +} |