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

Side by Side Diff: extensions/browser/api/declarative/declarative_api.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 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 "extensions/browser/api/declarative/declarative_api.h" 5 #include "extensions/browser/api/declarative/declarative_api.h"
6 6
7 #include <stddef.h>
8
7 #include "base/base64.h" 9 #include "base/base64.h"
8 #include "base/bind.h" 10 #include "base/bind.h"
9 #include "base/bind_helpers.h" 11 #include "base/bind_helpers.h"
10 #include "base/single_thread_task_runner.h" 12 #include "base/single_thread_task_runner.h"
11 #include "base/task_runner_util.h" 13 #include "base/task_runner_util.h"
12 #include "base/values.h" 14 #include "base/values.h"
13 #include "content/public/browser/browser_thread.h" 15 #include "content/public/browser/browser_thread.h"
14 #include "content/public/browser/render_frame_host.h" 16 #include "content/public/browser/render_frame_host.h"
15 #include "content/public/browser/render_process_host.h" 17 #include "content/public/browser/render_process_host.h"
16 #include "content/public/browser/web_contents.h" 18 #include "content/public/browser/web_contents.h"
(...skipping 185 matching lines...) Expand 10 before | Expand all | Expand 10 after
202 } else { 204 } else {
203 rules_registry_->GetAllRules(extension_id(), &rules); 205 rules_registry_->GetAllRules(extension_id(), &rules);
204 } 206 }
205 207
206 results_ = GetRules::Results::Create(rules); 208 results_ = GetRules::Results::Create(rules);
207 209
208 return true; 210 return true;
209 } 211 }
210 212
211 } // namespace extensions 213 } // namespace extensions
OLDNEW
« no previous file with comments | « extensions/browser/api/cast_channel/logger_unittest.cc ('k') | extensions/browser/api/declarative/declarative_rule.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698