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: extensions/browser/app_window/test_app_window_contents.cc

Issue 1549643002: Switch to standard integer types in extensions/browser/. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@clean
Patch Set: Created 5 years 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 "extensions/browser/app_window/test_app_window_contents.h" 5 #include "extensions/browser/app_window/test_app_window_contents.h"
6 6
7 #include "content/public/browser/web_contents.h" 7 #include "content/public/browser/web_contents.h"
8 8
9 namespace extensions { 9 namespace extensions {
10 10
11 TestAppWindowContents::TestAppWindowContents(content::WebContents* web_contents) 11 TestAppWindowContents::TestAppWindowContents(content::WebContents* web_contents)
12 : web_contents_(web_contents) { 12 : web_contents_(web_contents) {
13 } 13 }
14 14
15 TestAppWindowContents::~TestAppWindowContents() { 15 TestAppWindowContents::~TestAppWindowContents() {
16 } 16 }
17 17
18 void TestAppWindowContents::Initialize(content::BrowserContext* context, 18 void TestAppWindowContents::Initialize(content::BrowserContext* context,
19 const GURL& url) { 19 const GURL& url) {
20 } 20 }
21 21
22 void TestAppWindowContents::LoadContents(int32 creator_process_id) { 22 void TestAppWindowContents::LoadContents(int32_t creator_process_id) {}
23 }
24 23
25 void TestAppWindowContents::NativeWindowChanged( 24 void TestAppWindowContents::NativeWindowChanged(
26 NativeAppWindow* native_app_window) { 25 NativeAppWindow* native_app_window) {
27 } 26 }
28 27
29 void TestAppWindowContents::NativeWindowClosed() { 28 void TestAppWindowContents::NativeWindowClosed() {
30 } 29 }
31 30
32 void TestAppWindowContents::DispatchWindowShownForTests() const { 31 void TestAppWindowContents::DispatchWindowShownForTests() const {
33 } 32 }
34 33
35 void TestAppWindowContents::OnWindowReady() {} 34 void TestAppWindowContents::OnWindowReady() {}
36 35
37 content::WebContents* TestAppWindowContents::GetWebContents() const { 36 content::WebContents* TestAppWindowContents::GetWebContents() const {
38 return web_contents_.get(); 37 return web_contents_.get();
39 } 38 }
40 39
41 WindowController* TestAppWindowContents::GetWindowController() const { 40 WindowController* TestAppWindowContents::GetWindowController() const {
42 return nullptr; 41 return nullptr;
43 } 42 }
44 43
45 } // namespace extensions 44 } // namespace extensions
OLDNEW
« no previous file with comments | « extensions/browser/app_window/test_app_window_contents.h ('k') | extensions/browser/blob_holder.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698