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

Side by Side Diff: chrome/test/data/webui/async_gen.h

Issue 1548153002: Switch to standard integer types in chrome/. (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 (c) 2011 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2011 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 #ifndef CHROME_TEST_DATA_WEBUI_ASYNC_GEN_H_ 4 #ifndef CHROME_TEST_DATA_WEBUI_ASYNC_GEN_H_
5 #define CHROME_TEST_DATA_WEBUI_ASYNC_GEN_H_ 5 #define CHROME_TEST_DATA_WEBUI_ASYNC_GEN_H_
6 6
7 #include "base/macros.h"
7 #include "chrome/test/base/web_ui_browser_test.h" 8 #include "chrome/test/base/web_ui_browser_test.h"
8 #include "content/public/browser/web_ui_message_handler.h" 9 #include "content/public/browser/web_ui_message_handler.h"
9 #include "testing/gmock/include/gmock/gmock.h" 10 #include "testing/gmock/include/gmock/gmock.h"
10 11
11 namespace base { 12 namespace base {
12 class ListValue; 13 class ListValue;
13 } // namespace base 14 } // namespace base
14 15
15 // C++ support class for javascript-generated asynchronous tests. 16 // C++ support class for javascript-generated asynchronous tests.
16 class WebUIBrowserAsyncGenTest : public WebUIBrowserTest { 17 class WebUIBrowserAsyncGenTest : public WebUIBrowserTest {
(...skipping 27 matching lines...) Expand all
44 45
45 void SetUpOnMainThread() override { 46 void SetUpOnMainThread() override {
46 WebUIBrowserTest::SetUpOnMainThread(); 47 WebUIBrowserTest::SetUpOnMainThread();
47 EXPECT_CALL(message_handler_, HandleTearDown(::testing::_)); 48 EXPECT_CALL(message_handler_, HandleTearDown(::testing::_));
48 } 49 }
49 50
50 DISALLOW_COPY_AND_ASSIGN(WebUIBrowserAsyncGenTest); 51 DISALLOW_COPY_AND_ASSIGN(WebUIBrowserAsyncGenTest);
51 }; 52 };
52 53
53 #endif // CHROME_TEST_DATA_WEBUI_ASYNC_GEN_H_ 54 #endif // CHROME_TEST_DATA_WEBUI_ASYNC_GEN_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698