summaryrefslogtreecommitdiffstats
path: root/chrome/browser/tabs/pinned_tab_codec.cc
diff options
context:
space:
mode:
authoraa@chromium.org <aa@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2010-03-19 08:58:12 +0000
committeraa@chromium.org <aa@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2010-03-19 08:58:12 +0000
commit7d8867df6c96bf76c040042a834af04a8ab319bc (patch)
tree3e0914651dc6093502fc65fb89631bd34031528e /chrome/browser/tabs/pinned_tab_codec.cc
parent6145198177d58f79e7ed1b44fee883ea074fc5fa (diff)
downloadchromium_src-7d8867df6c96bf76c040042a834af04a8ab319bc.zip
chromium_src-7d8867df6c96bf76c040042a834af04a8ab319bc.tar.gz
chromium_src-7d8867df6c96bf76c040042a834af04a8ab319bc.tar.bz2
Refactor app-related manifest properties so that they don't
include the name 'app'. I think these will be useful for normal extensions, too. Also extract an ExtensionExtent class out of Extension. I think this will be useful for passing by value to the IO thread. Review URL: http://codereview.chromium.org/1025006 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@42091 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'chrome/browser/tabs/pinned_tab_codec.cc')
-rw-r--r--chrome/browser/tabs/pinned_tab_codec.cc2
1 files changed, 1 insertions, 1 deletions
diff --git a/chrome/browser/tabs/pinned_tab_codec.cc b/chrome/browser/tabs/pinned_tab_codec.cc
index 51b8fd2..df096fc 100644
--- a/chrome/browser/tabs/pinned_tab_codec.cc
+++ b/chrome/browser/tabs/pinned_tab_codec.cc
@@ -50,7 +50,7 @@ static void EncodePinnedTab(TabStripModel* model,
// . the user is effectively restarting the app, so that returning them to
// the app's launch page seems closest to what they expect.
// . we do the same when restoring a phantom tab.
- value->SetString(kURL, extension->app_launch_url().spec());
+ value->SetString(kURL, extension->GetFullLaunchURL().spec());
values->Append(value.release());
} else {
NavigationEntry* entry = tab_contents->controller().GetActiveEntry();