Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(72)

Side by Side Diff: athena/extensions/shell/extensions_delegate_impl.cc

Issue 634313004: Display dialog when app install succeeds / fails on Athena (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 6 years, 2 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
1 // Copyright 2014 The Chromium Authors. All rights reserved. 1 // Copyright 2014 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be 2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file. 3 // found in the LICENSE file.
4 4
5 #include "athena/extensions/public/extensions_delegate.h" 5 #include "athena/extensions/public/extensions_delegate.h"
6 6
7 #include "athena/extensions/shell/athena_shell_app_window_client.h" 7 #include "athena/extensions/shell/athena_shell_app_window_client.h"
8 #include "base/macros.h" 8 #include "base/macros.h"
9 #include "extensions/common/extension_set.h" 9 #include "extensions/common/extension_set.h"
10 #include "extensions/shell/browser/shell_extension_system.h" 10 #include "extensions/shell/browser/shell_extension_system.h"
(...skipping 23 matching lines...) Expand all
34 shell_extensions_.Insert(extension_system_->extension()); 34 shell_extensions_.Insert(extension_system_->extension());
35 return shell_extensions_; 35 return shell_extensions_;
36 } 36 }
37 virtual bool LaunchApp(const std::string& app_id) override { 37 virtual bool LaunchApp(const std::string& app_id) override {
38 extension_system_->LaunchApp(); 38 extension_system_->LaunchApp();
39 return true; 39 return true;
40 } 40 }
41 41
42 virtual bool UnloadApp(const std::string& app_id) override { return false; } 42 virtual bool UnloadApp(const std::string& app_id) override { return false; }
43 43
44 virtual extensions::ExtensionInstallUI* CreateExtensionInstallUI() override {
45 return NULL;
46 }
47
44 content::BrowserContext* context_; 48 content::BrowserContext* context_;
45 extensions::ShellExtensionSystem* extension_system_; 49 extensions::ShellExtensionSystem* extension_system_;
46 extensions::ExtensionSet shell_extensions_; 50 extensions::ExtensionSet shell_extensions_;
47 51
48 AthenaShellAppWindowClient app_window_client_; 52 AthenaShellAppWindowClient app_window_client_;
49 53
50 DISALLOW_COPY_AND_ASSIGN(ShellExtensionsDelegate); 54 DISALLOW_COPY_AND_ASSIGN(ShellExtensionsDelegate);
51 }; 55 };
52 56
53 } // namespace 57 } // namespace
54 58
55 // static 59 // static
56 void ExtensionsDelegate::CreateExtensionsDelegate( 60 void ExtensionsDelegate::CreateExtensionsDelegate(
57 content::BrowserContext* context) { 61 content::BrowserContext* context) {
58 new ShellExtensionsDelegate(context); 62 new ShellExtensionsDelegate(context);
59 } 63 }
60 64
61 } // namespace athena 65 } // namespace athena
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698