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

Side by Side Diff: chrome/browser/extensions/api/tabs/ash_panel_contents.cc

Issue 15239002: Move Extension and PermissionsData to extensions/common. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: rebase Created 7 years, 1 month 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 | Annotate | Revision Log
OLDNEW
1 // Copyright 2013 The Chromium Authors. All rights reserved. 1 // Copyright 2013 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 "chrome/browser/extensions/api/tabs/ash_panel_contents.h" 5 #include "chrome/browser/extensions/api/tabs/ash_panel_contents.h"
6 6
7 #include "apps/ui/native_app_window.h" 7 #include "apps/ui/native_app_window.h"
8 #include "base/values.h" 8 #include "base/values.h"
9 #include "chrome/browser/chrome_notification_types.h" 9 #include "chrome/browser/chrome_notification_types.h"
10 #include "chrome/browser/extensions/api/tabs/tabs_constants.h" 10 #include "chrome/browser/extensions/api/tabs/tabs_constants.h"
11 #include "chrome/browser/extensions/api/tabs/tabs_windows_api.h" 11 #include "chrome/browser/extensions/api/tabs/tabs_windows_api.h"
12 #include "chrome/browser/extensions/api/tabs/windows_event_router.h" 12 #include "chrome/browser/extensions/api/tabs/windows_event_router.h"
13 #include "chrome/browser/extensions/extension_tab_util.h" 13 #include "chrome/browser/extensions/extension_tab_util.h"
14 #include "chrome/browser/extensions/window_controller_list.h" 14 #include "chrome/browser/extensions/window_controller_list.h"
15 #include "chrome/browser/profiles/profile.h" 15 #include "chrome/browser/profiles/profile.h"
16 #include "chrome/browser/sessions/session_tab_helper.h" 16 #include "chrome/browser/sessions/session_tab_helper.h"
17 #include "chrome/common/extensions/extension.h"
18 #include "chrome/common/extensions/extension_messages.h" 17 #include "chrome/common/extensions/extension_messages.h"
19 #include "content/public/browser/site_instance.h" 18 #include "content/public/browser/site_instance.h"
20 #include "content/public/browser/web_contents.h" 19 #include "content/public/browser/web_contents.h"
20 #include "extensions/common/extension.h"
21 #include "ui/gfx/image/image.h" 21 #include "ui/gfx/image/image.h"
22 22
23 using apps::ShellWindow; 23 using apps::ShellWindow;
24 using apps::NativeAppWindow; 24 using apps::NativeAppWindow;
25 25
26 // AshPanelWindowController ---------------------------------------------------- 26 // AshPanelWindowController ----------------------------------------------------
27 27
28 // This class enables a ShellWindow instance to be accessed (to a limited 28 // This class enables a ShellWindow instance to be accessed (to a limited
29 // extent) via the chrome.windows and chrome.tabs API. This is a temporary 29 // extent) via the chrome.windows and chrome.tabs API. This is a temporary
30 // bridge to support instantiating ShellWindows from v1 apps, specifically 30 // bridge to support instantiating ShellWindows from v1 apps, specifically
(...skipping 206 matching lines...) Expand 10 before | Expand all | Expand 10 after
237 237
238 content::WebContents* AshPanelContents::GetAssociatedWebContents() const { 238 content::WebContents* AshPanelContents::GetAssociatedWebContents() const {
239 return web_contents_.get(); 239 return web_contents_.get();
240 } 240 }
241 241
242 void AshPanelContents::OnRequest( 242 void AshPanelContents::OnRequest(
243 const ExtensionHostMsg_Request_Params& params) { 243 const ExtensionHostMsg_Request_Params& params) {
244 extension_function_dispatcher_->Dispatch( 244 extension_function_dispatcher_->Dispatch(
245 params, web_contents_->GetRenderViewHost()); 245 params, web_contents_->GetRenderViewHost());
246 } 246 }
OLDNEW
« no previous file with comments | « chrome/browser/extensions/api/tab_capture/tab_capture_registry.cc ('k') | chrome/browser/extensions/api/tabs/tabs_api.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698