diff options
author | darin@chromium.org <darin@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2013-05-10 04:40:40 +0000 |
---|---|---|
committer | darin@chromium.org <darin@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2013-05-10 04:40:40 +0000 |
commit | 93f50465e566f03b6d720cddc47b221c6671c7a3 (patch) | |
tree | e055dd3f999d6d69aa4b2a0186281053ea8f0ce6 /chrome/common/web_application_info.cc | |
parent | f2c45a207b65fc42a38a37474bde9f058231c896 (diff) | |
download | chromium_src-93f50465e566f03b6d720cddc47b221c6671c7a3.zip chromium_src-93f50465e566f03b6d720cddc47b221c6671c7a3.tar.gz chromium_src-93f50465e566f03b6d720cddc47b221c6671c7a3.tar.bz2 |
Move web_apps methods from chrome/common to chrome/renderer.
Leaves WebApplicationInfo struct definition in chrome/common
since it is used over IPC and in the browser process.
BUG=239202
R=miket@chromium.org
Review URL: https://codereview.chromium.org/14734007
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@199373 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'chrome/common/web_application_info.cc')
-rw-r--r-- | chrome/common/web_application_info.cc | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/chrome/common/web_application_info.cc b/chrome/common/web_application_info.cc new file mode 100644 index 0000000..29a22c8 --- /dev/null +++ b/chrome/common/web_application_info.cc @@ -0,0 +1,13 @@ +// Copyright (c) 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/web_application_info.h" + +WebApplicationInfo::WebApplicationInfo() { + is_bookmark_app = false; + is_offline_enabled = false; +} + +WebApplicationInfo::~WebApplicationInfo() { +} |