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

Side by Side Diff: components/pdf_viewer/pdf_viewer.cc

Issue 1551433002: Switch to standard integer types in components/, part 3 of 4. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: more 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 2015 The Chromium Authors. All rights reserved. 1 // Copyright 2015 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 <stddef.h>
6 #include <stdint.h>
7
5 #include "base/bind.h" 8 #include "base/bind.h"
6 #include "base/callback.h" 9 #include "base/callback.h"
7 #include "base/containers/hash_tables.h" 10 #include "base/containers/hash_tables.h"
11 #include "base/macros.h"
8 #include "base/memory/scoped_ptr.h" 12 #include "base/memory/scoped_ptr.h"
9 #include "components/bitmap_uploader/bitmap_uploader.h" 13 #include "components/bitmap_uploader/bitmap_uploader.h"
10 #include "components/mus/common/types.h" 14 #include "components/mus/common/types.h"
11 #include "components/mus/public/cpp/input_event_handler.h" 15 #include "components/mus/public/cpp/input_event_handler.h"
12 #include "components/mus/public/cpp/scoped_window_ptr.h" 16 #include "components/mus/public/cpp/scoped_window_ptr.h"
13 #include "components/mus/public/cpp/window.h" 17 #include "components/mus/public/cpp/window.h"
14 #include "components/mus/public/cpp/window_observer.h" 18 #include "components/mus/public/cpp/window_observer.h"
15 #include "components/mus/public/cpp/window_tree_connection.h" 19 #include "components/mus/public/cpp/window_tree_connection.h"
16 #include "components/mus/public/cpp/window_tree_delegate.h" 20 #include "components/mus/public/cpp/window_tree_delegate.h"
17 #include "components/mus/public/interfaces/input_events.mojom.h" 21 #include "components/mus/public/interfaces/input_events.mojom.h"
(...skipping 348 matching lines...) Expand 10 before | Expand all | Expand 10 after
366 370
367 DISALLOW_COPY_AND_ASSIGN(PDFViewer); 371 DISALLOW_COPY_AND_ASSIGN(PDFViewer);
368 }; 372 };
369 } // namespace 373 } // namespace
370 } // namespace pdf_viewer 374 } // namespace pdf_viewer
371 375
372 MojoResult MojoMain(MojoHandle application_request) { 376 MojoResult MojoMain(MojoHandle application_request) {
373 mojo::ApplicationRunner runner(new pdf_viewer::PDFViewer()); 377 mojo::ApplicationRunner runner(new pdf_viewer::PDFViewer());
374 return runner.Run(application_request); 378 return runner.Run(application_request);
375 } 379 }
OLDNEW
« no previous file with comments | « components/pdf/renderer/pepper_pdf_host.h ('k') | components/plugins/renderer/loadable_plugin_placeholder.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698