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

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

Issue 863033002: Delete athena/ (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 5 years, 11 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
(Empty)
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
3 // found in the LICENSE file.
4
5 #include "athena/extensions/shell/athena_shell_app_window_client.h"
6
7 #include "athena/extensions/shell/athena_shell_app_delegate.h"
8 #include "extensions/browser/app_window/app_window.h"
9
10 namespace athena {
11
12 AthenaShellAppWindowClient::AthenaShellAppWindowClient() {
13 }
14
15 AthenaShellAppWindowClient::~AthenaShellAppWindowClient() {
16 }
17
18 extensions::AppWindow* AthenaShellAppWindowClient::CreateAppWindow(
19 content::BrowserContext* context,
20 const extensions::Extension* extension) {
21 return new extensions::AppWindow(
22 context, new AthenaShellAppDelegate, extension);
23 }
24
25 void AthenaShellAppWindowClient::OpenDevToolsWindow(
26 content::WebContents* web_contents,
27 const base::Closure& callback) {
28 // TODO(oshima): Figure out what to do.
29 }
30
31 bool AthenaShellAppWindowClient::IsCurrentChannelOlderThanDev() {
32 return false;
33 }
34
35 } // namespace athena
OLDNEW
« no previous file with comments | « athena/extensions/shell/athena_shell_app_window_client.h ('k') | athena/extensions/shell/athena_shell_scheme_classifier.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698