diff options
author | pliard@chromium.org <pliard@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2012-07-05 10:34:02 +0000 |
---|---|---|
committer | pliard@chromium.org <pliard@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2012-07-05 10:34:02 +0000 |
commit | f31bc24e8c1cba5170a424f452a14f999e8fe7a2 (patch) | |
tree | 2c929037811255e76479cb6319f8115043583b04 /chrome/browser/web_applications | |
parent | 068407ea0977bbad2284d6b430bf1de3aca181e3 (diff) | |
download | chromium_src-f31bc24e8c1cba5170a424f452a14f999e8fe7a2.zip chromium_src-f31bc24e8c1cba5170a424f452a14f999e8fe7a2.tar.gz chromium_src-f31bc24e8c1cba5170a424f452a14f999e8fe7a2.tar.bz2 |
Add dummy web_app::internals::CreatePlatformShortcut() for Android.
This is part of unit_tests linking effort.
Review URL: https://chromiumcodereview.appspot.com/10695098
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@145518 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'chrome/browser/web_applications')
-rw-r--r-- | chrome/browser/web_applications/web_app_android.cc | 18 |
1 files changed, 18 insertions, 0 deletions
diff --git a/chrome/browser/web_applications/web_app_android.cc b/chrome/browser/web_applications/web_app_android.cc new file mode 100644 index 0000000..c067c8b --- /dev/null +++ b/chrome/browser/web_applications/web_app_android.cc @@ -0,0 +1,18 @@ +// Copyright (c) 2012 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/browser/web_applications/web_app.h" + +namespace web_app { +namespace internals { + +bool CreatePlatformShortcut( + const FilePath& web_app_path, + const FilePath& profile_path, + const ShellIntegration::ShortcutInfo& shortcut_info) { + return true; +} + +} // namespace internals +} // namespace web_app |