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

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

Issue 306823002: Flip --enable-apps-show-on-first-paint flag. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Tests Created 6 years, 6 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 | 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"
(...skipping 191 matching lines...) Expand 10 before | Expand all | Expand 10 after
202 } 202 }
203 203
204 void AshPanelContents::NativeWindowChanged(NativeAppWindow* native_app_window) { 204 void AshPanelContents::NativeWindowChanged(NativeAppWindow* native_app_window) {
205 if (window_controller_) 205 if (window_controller_)
206 window_controller_->NativeWindowChanged(); 206 window_controller_->NativeWindowChanged();
207 } 207 }
208 208
209 void AshPanelContents::NativeWindowClosed() { 209 void AshPanelContents::NativeWindowClosed() {
210 } 210 }
211 211
212 void AshPanelContents::NativeWindowFirstShown() const {
213 }
214
212 content::WebContents* AshPanelContents::GetWebContents() const { 215 content::WebContents* AshPanelContents::GetWebContents() const {
213 return web_contents_.get(); 216 return web_contents_.get();
214 } 217 }
215 218
216 void AshPanelContents::FaviconUpdated() { 219 void AshPanelContents::FaviconUpdated() {
217 gfx::Image new_image = gfx::Image::CreateFrom1xBitmap( 220 gfx::Image new_image = gfx::Image::CreateFrom1xBitmap(
218 launcher_favicon_loader_->GetFavicon()); 221 launcher_favicon_loader_->GetFavicon());
219 host_->UpdateAppIcon(new_image); 222 host_->UpdateAppIcon(new_image);
220 } 223 }
221 224
(...skipping 13 matching lines...) Expand all
235 238
236 content::WebContents* AshPanelContents::GetAssociatedWebContents() const { 239 content::WebContents* AshPanelContents::GetAssociatedWebContents() const {
237 return web_contents_.get(); 240 return web_contents_.get();
238 } 241 }
239 242
240 void AshPanelContents::OnRequest( 243 void AshPanelContents::OnRequest(
241 const ExtensionHostMsg_Request_Params& params) { 244 const ExtensionHostMsg_Request_Params& params) {
242 extension_function_dispatcher_->Dispatch( 245 extension_function_dispatcher_->Dispatch(
243 params, web_contents_->GetRenderViewHost()); 246 params, web_contents_->GetRenderViewHost());
244 } 247 }
OLDNEW
« no previous file with comments | « chrome/browser/extensions/api/tabs/ash_panel_contents.h ('k') | chrome/common/chrome_switches.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698