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

Side by Side Diff: chrome/common/extensions/manifest_tests/extension_manifests_platformapp_unittest.cc

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) 2012 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2012 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 "base/command_line.h" 5 #include "base/command_line.h"
6 #include "base/json/json_file_value_serializer.h" 6 #include "base/json/json_file_value_serializer.h"
7 #include "base/macros.h"
7 #include "base/memory/linked_ptr.h" 8 #include "base/memory/linked_ptr.h"
8 #include "chrome/common/extensions/manifest_tests/chrome_manifest_test.h" 9 #include "chrome/common/extensions/manifest_tests/chrome_manifest_test.h"
9 #include "extensions/common/error_utils.h" 10 #include "extensions/common/error_utils.h"
10 #include "extensions/common/features/simple_feature.h" 11 #include "extensions/common/features/simple_feature.h"
11 #include "extensions/common/manifest_constants.h" 12 #include "extensions/common/manifest_constants.h"
12 #include "extensions/common/manifest_handlers/app_isolation_info.h" 13 #include "extensions/common/manifest_handlers/app_isolation_info.h"
13 #include "extensions/common/manifest_handlers/csp_info.h" 14 #include "extensions/common/manifest_handlers/csp_info.h"
14 #include "extensions/common/manifest_handlers/incognito_info.h" 15 #include "extensions/common/manifest_handlers/incognito_info.h"
15 #include "extensions/common/switches.h" 16 #include "extensions/common/switches.h"
16 #include "testing/gtest/include/gtest/gtest.h" 17 #include "testing/gtest/include/gtest/gtest.h"
(...skipping 120 matching lines...) Expand 10 before | Expand all | Expand 10 after
137 } 138 }
138 139
139 // Now try again with the experimental flag set. 140 // Now try again with the experimental flag set.
140 base::CommandLine::ForCurrentProcess()->AppendSwitch( 141 base::CommandLine::ForCurrentProcess()->AppendSwitch(
141 switches::kEnableExperimentalExtensionApis); 142 switches::kEnableExperimentalExtensionApis);
142 for (const scoped_ptr<ManifestData>& manifest : manifests) 143 for (const scoped_ptr<ManifestData>& manifest : manifests)
143 LoadAndExpectSuccess(*manifest); 144 LoadAndExpectSuccess(*manifest);
144 } 145 }
145 146
146 } // namespace extensions 147 } // namespace extensions
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698