summaryrefslogtreecommitdiffstats
path: root/content/test
diff options
context:
space:
mode:
authorajwong@chromium.org <ajwong@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2012-07-11 07:04:07 +0000
committerajwong@chromium.org <ajwong@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2012-07-11 07:04:07 +0000
commitf78671752ae4546052e3973a8ea51d3ee0cdd1d8 (patch)
treea491e42f9d84d33669709fbe93261edb1924c1a1 /content/test
parent616b4c4e74f13762b15d0ff1917c2001c3f9a800 (diff)
downloadchromium_src-f78671752ae4546052e3973a8ea51d3ee0cdd1d8.zip
chromium_src-f78671752ae4546052e3973a8ea51d3ee0cdd1d8.tar.gz
chromium_src-f78671752ae4546052e3973a8ea51d3ee0cdd1d8.tar.bz2
Remove #pragma once from content
Review URL: https://chromiumcodereview.appspot.com/10696166 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@146071 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'content/test')
-rw-r--r--content/test/browser_test_base.h3
-rw-r--r--content/test/content_browser_test.h3
-rw-r--r--content/test/content_test_suite.h1
-rw-r--r--content/test/gpu/gpu_test_config.h1
-rw-r--r--content/test/gpu/gpu_test_expectations_parser.h1
-rw-r--r--content/test/mock_keyboard.h3
-rw-r--r--content/test/mock_keyboard_driver_win.h3
-rw-r--r--content/test/mock_render_process.h1
-rw-r--r--content/test/net/url_request_abort_on_end_job.h3
-rw-r--r--content/test/net/url_request_failed_job.h1
-rw-r--r--content/test/net/url_request_mock_http_job.h1
-rw-r--r--content/test/net/url_request_slow_download_job.h1
-rw-r--r--content/test/net/url_request_slow_http_job.h3
-rw-r--r--content/test/test_content_browser_client.h1
-rw-r--r--content/test/test_content_client.h1
-rw-r--r--content/test/test_render_view_host_factory.h1
-rw-r--r--content/test/test_web_contents_view.h1
-rw-r--r--content/test/webrtc_audio_device_test.h1
18 files changed, 6 insertions, 24 deletions
diff --git a/content/test/browser_test_base.h b/content/test/browser_test_base.h
index 3174eaf..7c39f1e 100644
--- a/content/test/browser_test_base.h
+++ b/content/test/browser_test_base.h
@@ -1,10 +1,9 @@
-// Copyright (c) 2011 The Chromium Authors. All rights reserved.
+// Copyright (c) 2012 The Chromium Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
#ifndef CONTENT_TEST_BROWSER_TEST_BASE_H_
#define CONTENT_TEST_BROWSER_TEST_BASE_H_
-#pragma once
#include "base/compiler_specific.h"
#include "testing/gtest/include/gtest/gtest.h"
diff --git a/content/test/content_browser_test.h b/content/test/content_browser_test.h
index 7626b3b..d00077b 100644
--- a/content/test/content_browser_test.h
+++ b/content/test/content_browser_test.h
@@ -1,10 +1,9 @@
-// Copyright (c) 2011 The Chromium Authors. All rights reserved.
+// Copyright (c) 2012 The Chromium Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
#ifndef CONTENT_TEST_CONTENT_BROWSER_TEST_H_
#define CONTENT_TEST_CONTENT_BROWSER_TEST_H_
-#pragma once
#include "base/memory/scoped_ptr.h"
#include "content/test/browser_test_base.h"
diff --git a/content/test/content_test_suite.h b/content/test/content_test_suite.h
index 390ed4c..eac20fc 100644
--- a/content/test/content_test_suite.h
+++ b/content/test/content_test_suite.h
@@ -4,7 +4,6 @@
#ifndef CONTENT_TEST_CONTENT_TEST_SUITE_H_
#define CONTENT_TEST_CONTENT_TEST_SUITE_H_
-#pragma once
#include "base/compiler_specific.h"
#include "base/win/scoped_com_initializer.h"
diff --git a/content/test/gpu/gpu_test_config.h b/content/test/gpu/gpu_test_config.h
index 53f78a2..0750b52 100644
--- a/content/test/gpu/gpu_test_config.h
+++ b/content/test/gpu/gpu_test_config.h
@@ -4,7 +4,6 @@
#ifndef CONTENT_TEST_GPU_GPU_TEST_CONFIG_H_
#define CONTENT_TEST_GPU_GPU_TEST_CONFIG_H_
-#pragma once
#include <string>
#include <vector>
diff --git a/content/test/gpu/gpu_test_expectations_parser.h b/content/test/gpu/gpu_test_expectations_parser.h
index 10371c5..215096d 100644
--- a/content/test/gpu/gpu_test_expectations_parser.h
+++ b/content/test/gpu/gpu_test_expectations_parser.h
@@ -4,7 +4,6 @@
#ifndef CONTENT_TEST_GPU_GPU_TEST_EXPECTATIONS_PARSER_H_
#define CONTENT_TEST_GPU_GPU_TEST_EXPECTATIONS_PARSER_H_
-#pragma once
#include <string>
#include <vector>
diff --git a/content/test/mock_keyboard.h b/content/test/mock_keyboard.h
index 6f49297..405ca2a 100644
--- a/content/test/mock_keyboard.h
+++ b/content/test/mock_keyboard.h
@@ -1,10 +1,9 @@
-// Copyright (c) 2011 The Chromium Authors. All rights reserved.
+// Copyright (c) 2012 The Chromium Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
#ifndef CONTENT_TEST_MOCK_KEYBOARD_H_
#define CONTENT_TEST_MOCK_KEYBOARD_H_
-#pragma once
#include <string>
diff --git a/content/test/mock_keyboard_driver_win.h b/content/test/mock_keyboard_driver_win.h
index 44c2b2d..d615729 100644
--- a/content/test/mock_keyboard_driver_win.h
+++ b/content/test/mock_keyboard_driver_win.h
@@ -1,10 +1,9 @@
-// Copyright (c) 2011 The Chromium Authors. All rights reserved.
+// Copyright (c) 2012 The Chromium Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
#ifndef CONTENT_TEST_MOCK_KEYBOARD_DRIVER_WIN_H_
#define CONTENT_TEST_MOCK_KEYBOARD_DRIVER_WIN_H_
-#pragma once
#include <windows.h>
diff --git a/content/test/mock_render_process.h b/content/test/mock_render_process.h
index 25a66ca..0116a71 100644
--- a/content/test/mock_render_process.h
+++ b/content/test/mock_render_process.h
@@ -4,7 +4,6 @@
#ifndef CONTENT_TEST_MOCK_RENDER_PROCESS_H_
#define CONTENT_TEST_MOCK_RENDER_PROCESS_H_
-#pragma once
#include "content/renderer/render_process.h"
diff --git a/content/test/net/url_request_abort_on_end_job.h b/content/test/net/url_request_abort_on_end_job.h
index 73334bda..56e80b2 100644
--- a/content/test/net/url_request_abort_on_end_job.h
+++ b/content/test/net/url_request_abort_on_end_job.h
@@ -1,11 +1,10 @@
-// Copyright (c) 2011 The Chromium Authors. All rights reserved.
+// Copyright (c) 2012 The Chromium Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
// This class simulates what wininet does when a dns lookup fails.
#ifndef CONTENT_TEST_NET_URL_REQUEST_ABORT_ON_END_JOB_H_
#define CONTENT_TEST_NET_URL_REQUEST_ABORT_ON_END_JOB_H_
-#pragma once
#include <string>
diff --git a/content/test/net/url_request_failed_job.h b/content/test/net/url_request_failed_job.h
index 77ff6f0..9c8a387 100644
--- a/content/test/net/url_request_failed_job.h
+++ b/content/test/net/url_request_failed_job.h
@@ -4,7 +4,6 @@
#ifndef CONTENT_TEST_NET_URL_REQUEST_FAILED_JOB_H_
#define CONTENT_TEST_NET_URL_REQUEST_FAILED_JOB_H_
-#pragma once
#include <string>
diff --git a/content/test/net/url_request_mock_http_job.h b/content/test/net/url_request_mock_http_job.h
index 4c311d7..d5bbee1 100644
--- a/content/test/net/url_request_mock_http_job.h
+++ b/content/test/net/url_request_mock_http_job.h
@@ -6,7 +6,6 @@
#ifndef CONTENT_TEST_NET_URL_REQUEST_MOCK_HTTP_JOB_H_
#define CONTENT_TEST_NET_URL_REQUEST_MOCK_HTTP_JOB_H_
-#pragma once
#include <string>
diff --git a/content/test/net/url_request_slow_download_job.h b/content/test/net/url_request_slow_download_job.h
index 698ced8..fe5489e 100644
--- a/content/test/net/url_request_slow_download_job.h
+++ b/content/test/net/url_request_slow_download_job.h
@@ -8,7 +8,6 @@
#ifndef CONTENT_TEST_NET_URL_REQUEST_SLOW_DOWNLOAD_JOB_H_
#define CONTENT_TEST_NET_URL_REQUEST_SLOW_DOWNLOAD_JOB_H_
-#pragma once
#include <set>
#include <string>
diff --git a/content/test/net/url_request_slow_http_job.h b/content/test/net/url_request_slow_http_job.h
index c6df6da..27265a7 100644
--- a/content/test/net/url_request_slow_http_job.h
+++ b/content/test/net/url_request_slow_http_job.h
@@ -1,4 +1,4 @@
-// Copyright (c) 2011 The Chromium Authors. All rights reserved.
+// Copyright (c) 2012 The Chromium Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
//
@@ -6,7 +6,6 @@
#ifndef CONTENT_TEST_NET_URL_REQUEST_SLOW_HTTP_JOB_H_
#define CONTENT_TEST_NET_URL_REQUEST_SLOW_HTTP_JOB_H_
-#pragma once
#include "base/timer.h"
#include "content/test/net/url_request_mock_http_job.h"
diff --git a/content/test/test_content_browser_client.h b/content/test/test_content_browser_client.h
index b376c57..4a6435b 100644
--- a/content/test/test_content_browser_client.h
+++ b/content/test/test_content_browser_client.h
@@ -4,7 +4,6 @@
#ifndef CONTENT_TEST_TEST_CONTENT_BROWSER_CLIENT_H_
#define CONTENT_TEST_TEST_CONTENT_BROWSER_CLIENT_H_
-#pragma once
#include <string>
diff --git a/content/test/test_content_client.h b/content/test/test_content_client.h
index 2ecc5a6..0b4192f 100644
--- a/content/test/test_content_client.h
+++ b/content/test/test_content_client.h
@@ -4,7 +4,6 @@
#ifndef CONTENT_TEST_TEST_CONTENT_CLIENT_H_
#define CONTENT_TEST_TEST_CONTENT_CLIENT_H_
-#pragma once
#include <string>
#include <vector>
diff --git a/content/test/test_render_view_host_factory.h b/content/test/test_render_view_host_factory.h
index 7154aba..cbab8bc 100644
--- a/content/test/test_render_view_host_factory.h
+++ b/content/test/test_render_view_host_factory.h
@@ -4,7 +4,6 @@
#ifndef CONTENT_TEST_TEST_RENDER_VIEW_HOST_FACTORY_H_
#define CONTENT_TEST_TEST_RENDER_VIEW_HOST_FACTORY_H_
-#pragma once
#include "base/basictypes.h"
#include "base/compiler_specific.h"
diff --git a/content/test/test_web_contents_view.h b/content/test/test_web_contents_view.h
index fb98895..7f84225 100644
--- a/content/test/test_web_contents_view.h
+++ b/content/test/test_web_contents_view.h
@@ -4,7 +4,6 @@
#ifndef CONTENT_TEST_TEST_WEB_CONTENTS_VIEW_H_
#define CONTENT_TEST_TEST_WEB_CONTENTS_VIEW_H_
-#pragma once
#include "base/compiler_specific.h"
#include "content/port/browser/render_view_host_delegate_view.h"
diff --git a/content/test/webrtc_audio_device_test.h b/content/test/webrtc_audio_device_test.h
index a23bf3d..e4972d4 100644
--- a/content/test/webrtc_audio_device_test.h
+++ b/content/test/webrtc_audio_device_test.h
@@ -4,7 +4,6 @@
#ifndef CONTENT_TEST_WEBRTC_AUDIO_DEVICE_TEST_H_
#define CONTENT_TEST_WEBRTC_AUDIO_DEVICE_TEST_H_
-#pragma once
#include <string>