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

Side by Side Diff: chrome/browser/guest_view/chrome_guest_view_manager_delegate.cc

Issue 1550593002: Switch to standard integer types in chrome/browser/, part 2 of 4. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 4 years, 12 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 2015 The Chromium Authors. All rights reserved. 1 // Copyright 2015 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/guest_view/chrome_guest_view_manager_delegate.h" 5 #include "chrome/browser/guest_view/chrome_guest_view_manager_delegate.h"
6 6
7 #include "build/build_config.h"
7 #include "chrome/browser/task_management/web_contents_tags.h" 8 #include "chrome/browser/task_management/web_contents_tags.h"
8 9
9 #if defined(OS_CHROMEOS) 10 #if defined(OS_CHROMEOS)
10 #include "chrome/browser/chromeos/app_mode/app_session.h" 11 #include "chrome/browser/chromeos/app_mode/app_session.h"
11 #include "chrome/browser/chromeos/app_mode/kiosk_app_manager.h" 12 #include "chrome/browser/chromeos/app_mode/kiosk_app_manager.h"
12 #endif 13 #endif
13 14
14 namespace extensions { 15 namespace extensions {
15 16
16 ChromeGuestViewManagerDelegate::ChromeGuestViewManagerDelegate( 17 ChromeGuestViewManagerDelegate::ChromeGuestViewManagerDelegate(
(...skipping 14 matching lines...) Expand all
31 #if defined(OS_CHROMEOS) 32 #if defined(OS_CHROMEOS)
32 // Notifies kiosk session about the added guest. 33 // Notifies kiosk session about the added guest.
33 chromeos::AppSession* app_session = 34 chromeos::AppSession* app_session =
34 chromeos::KioskAppManager::Get()->app_session(); 35 chromeos::KioskAppManager::Get()->app_session();
35 if (app_session) 36 if (app_session)
36 app_session->OnGuestAdded(guest_web_contents); 37 app_session->OnGuestAdded(guest_web_contents);
37 #endif 38 #endif
38 } 39 }
39 40
40 } // namespace extensions 41 } // namespace extensions
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698